Skip Menu |

This queue is for tickets about the Gettext CPAN distribution.

Report information
The Basics
Id: 13042
Status: resolved
Priority: 0/
Queue: Gettext

People
Owner: PVANDRY [...] cpan.org
Requestors: pterjan [...] mandriva.com
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.04
Fixed in: (no value)



Subject: useless #ifdef should be #if
In gettext.xs, ANY_MISSING is always defined but has value 0 or 1. #ifdef ANY_MISSING should be #if ANY_MISSING in order to define not_here only when needed.
--- gettext.xs~ 2005-05-31 15:56:41.906968608 -0400 +++ gettext.xs 2005-05-31 16:06:15.667743712 -0400 @@ -51,7 +51,7 @@ #define ANY_MISSING 1 #endif -#ifdef ANY_MISSING +#if ANY_MISSING static int not_here(char *s) {
From: Phillip Vandry <vandry [...] TZoNE.ORG>
Date: Tue, 31 May 2005 22:34:08 -0400
To: Guest via RT <bug-Gettext [...] rt.cpan.org>
Subject: Re: [cpan #13042] useless #ifdef should be #if
RT-Send-Cc:
Thank you. #ifdef was changed to #if. The change will be in 1.5. -Phil