widl: Replace a #if by if for better compiler checking.
This commit is contained in:
parent
6e7389ada8
commit
954c592a6c
|
@ -34,10 +34,9 @@
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
#include "parser.h"
|
#include "parser.h"
|
||||||
|
|
||||||
/* #define WANT_NEAR_INDICATION */
|
static const int want_near_indication = 0;
|
||||||
|
|
||||||
#ifdef WANT_NEAR_INDICATION
|
static void make_print(char *str)
|
||||||
void make_print(char *str)
|
|
||||||
{
|
{
|
||||||
while(*str)
|
while(*str)
|
||||||
{
|
{
|
||||||
|
@ -46,13 +45,13 @@ void make_print(char *str)
|
||||||
str++;
|
str++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
static void generic_msg(const char *s, const char *t, const char *n, va_list ap)
|
static void generic_msg(const char *s, const char *t, const char *n, va_list ap)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s:%d: %s: ", input_name ? input_name : "stdin", line_number, t);
|
fprintf(stderr, "%s:%d: %s: ", input_name ? input_name : "stdin", line_number, t);
|
||||||
vfprintf(stderr, s, ap);
|
vfprintf(stderr, s, ap);
|
||||||
#ifdef WANT_NEAR_INDICATION
|
|
||||||
|
if (want_near_indication)
|
||||||
{
|
{
|
||||||
char *cpy;
|
char *cpy;
|
||||||
if(n)
|
if(n)
|
||||||
|
@ -63,7 +62,7 @@ static void generic_msg(const char *s, const char *t, const char *n, va_list ap)
|
||||||
free(cpy);
|
free(cpy);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue