diff options
author | Rob Landley <rob@landley.net> | 2007-11-15 18:30:30 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-11-15 18:30:30 -0600 |
commit | 2c226859cfc911c4a1eea009897050a16714aeec (patch) | |
tree | 9ae05df2a1907a25eb8eec8af0e677775bb3e74b /main.c | |
parent | 5d43eb420e036d993a9e100c9b46d7b78e323123 (diff) | |
download | toybox-2c226859cfc911c4a1eea009897050a16714aeec.tar.gz |
Remove trailing whitespace (thanks to Charlie Shepherd), and a couple comment
tweaks.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ struct toy_list *toy_find(char *name) top = TOY_LIST_LEN-1; for (;;) { int result; - + middle = (top+bottom)/2; if (middle<bottom || middle>top) return NULL; result = strcmp(name,toy_list[middle].name); |