From ee2ef17cc72e606c8d7f4e25fcc99ff8085d57d5 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 18 Jul 2025 10:38:18 +0200 Subject: tftp: use bb_error_msg instead of info_msg for a debug message This is the only use of bb_info_msg in tftp. Signed-off-by: Denys Vlasenko --- networking/tftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/tftp.c b/networking/tftp.c index f5b4367ca..b698a9288 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -250,7 +250,7 @@ static int tftp_blksize_check(const char *blksize_str, int maxsize) return -1; } # if ENABLE_TFTP_DEBUG - bb_info_msg("using blksize %u", blksize); + bb_error_msg("using blksize %u", blksize); # endif return blksize; } -- cgit v1.2.3-55-g6feb