diff options
author | Glenn L McGrath | 2002-11-28 10:27:50 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-28 10:27:50 +0000 |
commit | b2e28a0e3500d78fd6fb1d76e45ffe501b070404 (patch) | |
tree | 4cff0ffd53922ed86fdc7e92efc2d3ba0c3c6167 | |
parent | b122217d90171a7989fcc792d229444b66d99649 (diff) | |
download | busybox-b2e28a0e3500d78fd6fb1d76e45ffe501b070404.zip busybox-b2e28a0e3500d78fd6fb1d76e45ffe501b070404.tar.gz |
Use error_msg instead of fprintf(stderr
-rw-r--r-- | libbb/recursive_action.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/recursive_action.c b/libbb/recursive_action.c index 8917f47..8f9cc2f 100644 --- a/libbb/recursive_action.c +++ b/libbb/recursive_action.c @@ -60,8 +60,7 @@ int recursive_action(const char *fileName, if (status < 0) { #ifdef DEBUG_RECURS_ACTION - fprintf(stderr, - "status=%d followLinks=%d TRUE=%d\n", + error_msg("status=%d followLinks=%d TRUE=%d", status, followLinks, TRUE); #endif perror_msg("%s", fileName); |