mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +01:00
common: Fix unused variable warning on Unix.
--
This commit is contained in:
parent
89c7eccba5
commit
9938e8d3f4
@ -176,8 +176,11 @@ static char *
|
|||||||
copy_dir_with_fixup (const char *newdir)
|
copy_dir_with_fixup (const char *newdir)
|
||||||
{
|
{
|
||||||
char *result = NULL;
|
char *result = NULL;
|
||||||
char *p, *p0;
|
char *p;
|
||||||
|
#ifdef HAVE_W32_SYSTEM
|
||||||
|
char *p0;
|
||||||
const char *s;
|
const char *s;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (!*newdir)
|
if (!*newdir)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user