diff options
| author | David Shaw <[email protected]> | 2005-12-06 18:24:57 +0000 |
|---|---|---|
| committer | David Shaw <[email protected]> | 2005-12-06 18:24:57 +0000 |
| commit | a635daa6b6de2bbc40d723337e842ee86e751086 (patch) | |
| tree | 67ee7ec4613335bdd8e14370e5defc4222e4461c /util/mkdtemp.c | |
| parent | * Makefile.am: Some cleanup so we don't build files that are completely (diff) | |
| download | gnupg-a635daa6b6de2bbc40d723337e842ee86e751086.tar.gz gnupg-a635daa6b6de2bbc40d723337e842ee86e751086.zip | |
* mkdtemp.c (mkdtemp): Fix warning.
* secmem.c, assuan-buffer.c, dotlock.c: Fix a few warnings from printf-ing
%p where the arg wasn't void *.
Diffstat (limited to 'util/mkdtemp.c')
| -rw-r--r-- | util/mkdtemp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mkdtemp.c b/util/mkdtemp.c index 25ace4fc5..c0ee0bbdb 100644 --- a/util/mkdtemp.c +++ b/util/mkdtemp.c @@ -40,7 +40,7 @@ char *mkdtemp(char *template) { unsigned int attempts,idx,count=0; - byte *ch; + char *ch; idx=strlen(template); |
