Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-07 04:44:31 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-07 04:44:31 +0400
commit04c99ebb4f59d784d8bceaad86cb6227c1babd17 (patch)
tree706ebe3ac53a058c11f8a053f073fa6a387f0bbb /libbb/verror_msg.c
parent19507f0869571f29cfd0a4aed3d7c07db038b129 (diff)
random small shrinkage and elimination of statics
Diffstat (limited to 'libbb/verror_msg.c')
-rw-r--r--libbb/verror_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/verror_msg.c b/libbb/verror_msg.c
index 0f018c517..526b9d36c 100644
--- a/libbb/verror_msg.c
+++ b/libbb/verror_msg.c
@@ -10,7 +10,7 @@
#include "libbb.h"
#include <syslog.h>
-int logmode = LOGMODE_STDIO;
+smallint logmode = LOGMODE_STDIO;
const char *msg_eol = "\n";
void bb_verror_msg(const char *s, va_list p, const char* strerr)