1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-28 21:50:02 +02:00

common: Fix unused variable warning on Unix.

--
This commit is contained in:
Werner Koch 2024-01-10 17:21:32 +01:00
parent 89c7eccba5
commit 9938e8d3f4
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

@ -176,8 +176,11 @@ static char *
copy_dir_with_fixup (const char *newdir)
{
char *result = NULL;
char *p, *p0;
char *p;
#ifdef HAVE_W32_SYSTEM
char *p0;
const char *s;
#endif
if (!*newdir)
return NULL;