Skip to content

Commit 8c1f6ed

Browse files
committed
Resolve coderabbit comment about vprintf on different boards
1 parent aeb8d0d commit 8c1f6ed

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

  • TargetLibraries/GAP9/src

TargetLibraries/GAP9/src/Util.c

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,7 @@
1313
int deeploy_log(const char *__restrict fmt, ...) {
1414
va_list args;
1515
va_start(args, fmt);
16-
int ret;
17-
18-
#if defined(AM_PART_APOLLO4B) | defined(DAM_PART_APOLLO3)
19-
ret = am_util_stdio_vprintf(fmt, args);
20-
#else
21-
ret = vprintf(fmt, args);
22-
#endif
23-
16+
int ret = vprintf(fmt, args);
2417
va_end(args);
2518
return ret;
2619
}

0 commit comments

Comments
 (0)