diff options
-rw-r--r-- | lib9p/9p.c | 5 | ||||
-rw-r--r-- | lib9p/CMakeLists.txt | 1 |
2 files changed, 4 insertions, 2 deletions
@@ -6,9 +6,10 @@ #include <inttypes.h> /* for PRIu{n} */ #include <stdarg.h> /* for va_* */ -#include <stdio.h> /* for vsnprintf() */ #include <string.h> /* for strncpy() */ +#include <pico/fmt_printf.h> /* for fmt_vsnprintf() */ + #include <lib9p/9p.h> /* strings ********************************************************************/ @@ -79,7 +80,7 @@ int lib9p_errorf(struct lib9p_ctx *ctx, lib9p_errno_t linux_errno, char const *f if (lib9p_ctx_has_error(ctx)) return -1; va_start(args, fmt); - n = vsnprintf(ctx->err_msg, sizeof(ctx->err_msg), fmt, args); + n = fmt_vsnprintf(ctx->err_msg, sizeof(ctx->err_msg), fmt, args); va_end(args); if ((size_t)(n+1) < sizeof(ctx->err_msg)) memset(&ctx->err_msg[n+1], 0, sizeof(ctx->err_msg)-(n+1)); diff --git a/lib9p/CMakeLists.txt b/lib9p/CMakeLists.txt index 9240aa3..24f9d71 100644 --- a/lib9p/CMakeLists.txt +++ b/lib9p/CMakeLists.txt @@ -12,6 +12,7 @@ target_sources(lib9p INTERFACE srv.c ) target_link_libraries(lib9p INTERFACE + pico_fmt libcr_ipc libmisc libhw_generic |