diff options
author | Erik Andersen | 2000-03-23 01:09:18 +0000 |
---|---|---|
committer | Erik Andersen | 2000-03-23 01:09:18 +0000 |
commit | 298854f02963bd8e43dfeb7224d88cfeb0c932cb (patch) | |
tree | 7a2fbb55e55f980edddb0d627c3f3e79c8f793b0 /console-tools | |
parent | ec5bd90916b6e815a36c14ac04d1b78e3e487400 (diff) | |
download | busybox-298854f02963bd8e43dfeb7224d88cfeb0c932cb.zip busybox-298854f02963bd8e43dfeb7224d88cfeb0c932cb.tar.gz |
My latest ramblings.
-Erik
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/loadkmap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c index aa4f6bb..fe533d5 100644 --- a/console-tools/loadkmap.c +++ b/console-tools/loadkmap.c @@ -87,6 +87,8 @@ int loadkmap_main(int argc, char **argv) } } } - close(fd); + /* Don't bother to close files. Exit does that + * automagically, so we can save a few bytes */ + /* close(fd); */ return 0; } |