diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-11-04 17:57:16 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2011-11-04 17:57:16 +0200 |
commit | 7081d82c37326bac97184e338345fa1c327e3580 (patch) | |
tree | fa3b5df1f98d697837030f9f4a7fead860fe491e /src/xz/args.c | |
parent | Update THANKS. (diff) | |
download | xz-7081d82c37326bac97184e338345fa1c327e3580.tar.xz |
xz: Fix a typo in a comment.
Thanks to Bela Lubkin.
Diffstat (limited to '')
-rw-r--r-- | src/xz/args.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/args.c b/src/xz/args.c index dea93c5f..54b3ff32 100644 --- a/src/xz/args.c +++ b/src/xz/args.c @@ -452,7 +452,7 @@ parse_environment(args_info *args, char *argv0, const char *varname) } else if (prev_was_space) { prev_was_space = false; - // Keep argc small enough to fit into a singed int + // Keep argc small enough to fit into a signed int // and to keep it usable for memory allocation. if (++argc == my_min( INT_MAX, SIZE_MAX / sizeof(char *))) |