aboutsummaryrefslogtreecommitdiff
path: root/src/xz/args.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2011-11-04 17:57:16 +0200
committerLasse Collin <lasse.collin@tukaani.org>2011-11-04 17:57:45 +0200
commitd06d32f108c8278c25c24b2e8666bda7b2ec23b5 (patch)
tree37cf728f31f4888f0ab9739db308dfe2cd901568 /src/xz/args.c
parentUpdate THANKS. (diff)
downloadxz-d06d32f108c8278c25c24b2e8666bda7b2ec23b5.tar.xz
xz: Fix a typo in a comment.
Thanks to Bela Lubkin.
Diffstat (limited to 'src/xz/args.c')
-rw-r--r--src/xz/args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/args.c b/src/xz/args.c
index 4bd84a0c..34761d45 100644
--- a/src/xz/args.c
+++ b/src/xz/args.c
@@ -438,7 +438,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 *)))