diff options
author | David Shaw <[email protected]> | 2002-07-01 16:40:52 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-07-01 16:40:52 +0000 |
commit | b672df87d69704bacb721a25a4728dccd5c357ab (patch) | |
tree | 9b5892d960b2dffd7134936e8ee8fd4f7f81e0e8 /g10/exec.c | |
parent | typo fix. (diff) | |
download | gnupg-b672df87d69704bacb721a25a4728dccd5c357ab.tar.gz gnupg-b672df87d69704bacb721a25a4728dccd5c357ab.zip |
* packet.h, build-packet.c (build_attribute_subpkt), exec.c (expand_args),
mkdtemp.c (mkdtemp), photoid.c (parse_image_header): Fix some signedness
compiler warnings.
Diffstat (limited to 'g10/exec.c')
-rw-r--r-- | g10/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/exec.c b/g10/exec.c index 229c968bc..893718ad1 100644 --- a/g10/exec.c +++ b/g10/exec.c @@ -172,7 +172,7 @@ static int make_tempdir(struct exec_info *info) static int expand_args(struct exec_info *info,const char *args_in) { const char *ch=args_in; - int size,len; + unsigned int size,len; info->use_temp_files=0; info->keep_temp_files=0; |