diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-16 19:39:00 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-16 19:39:00 +0000 |
commit | 136eb768505a2506265c13d2f8f983caa7ff50a8 (patch) | |
tree | 2aa792b8a9d8f7af365c456f19f34a963236c26d /miscutils/hdparm.c | |
parent | 70ebeba228b7a2a8318613aefc110e6f0eaf663e (diff) | |
download | busybox-w32-136eb768505a2506265c13d2f8f983caa7ff50a8.tar.gz busybox-w32-136eb768505a2506265c13d2f8f983caa7ff50a8.tar.bz2 busybox-w32-136eb768505a2506265c13d2f8f983caa7ff50a8.zip |
Patch from Bernhard Fischer to make a bunch of symbols static
which were otherwise cluttering the global namespace.
git-svn-id: svn://busybox.net/trunk/busybox@10121 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/hdparm.c')
-rw-r--r-- | miscutils/hdparm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 0d2c328f0..5635ffd69 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c | |||
@@ -467,8 +467,8 @@ static const char *secu_str[] = { | |||
467 | 467 | ||
468 | /* Busybox messages and functions */ | 468 | /* Busybox messages and functions */ |
469 | 469 | ||
470 | const char * const bb_msg_shared_mem ="could not %s sharedmem buf"; | 470 | static const char * const bb_msg_shared_mem ="could not %s sharedmem buf"; |
471 | const char * const bb_msg_op_not_supp =" operation not supported on %s disks"; | 471 | static const char * const bb_msg_op_not_supp =" operation not supported on %s disks"; |
472 | 472 | ||
473 | static void bb_ioctl(int fd, int request, void *argp, const char *string) | 473 | static void bb_ioctl(int fd, int request, void *argp, const char *string) |
474 | { | 474 | { |