mirror of
git://git.psyced.org/git/psyclpc
synced 2024-08-15 03:20:16 +00:00
removed pointless use of non-reproducible macros
This commit is contained in:
parent
8bd51f2a48
commit
daa2f57b71
3 changed files with 6 additions and 4 deletions
|
@ -1702,6 +1702,7 @@ version (void)
|
||||||
|
|
||||||
fputs(drivertag(), stdout);
|
fputs(drivertag(), stdout);
|
||||||
|
|
||||||
|
#ifdef NOT_REPRODUCIBLE
|
||||||
fputs("; " RELEASE_DATE
|
fputs("; " RELEASE_DATE
|
||||||
"\nCompiled: " __DATE__
|
"\nCompiled: " __DATE__
|
||||||
#ifdef __TIME__
|
#ifdef __TIME__
|
||||||
|
@ -1709,6 +1710,7 @@ version (void)
|
||||||
#endif
|
#endif
|
||||||
"\n"
|
"\n"
|
||||||
, stdout);
|
, stdout);
|
||||||
|
#endif
|
||||||
} /* version() */
|
} /* version() */
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*/
|
/*-------------------------------------------------------------------------*/
|
||||||
|
|
|
@ -1597,8 +1597,8 @@ main (int argc, char **argv)
|
||||||
|
|
||||||
/* Print information about this daemon to help debugging */
|
/* Print information about this daemon to help debugging */
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s Amylaar ERQ %s: Path '%s', debuglevel %d\n"
|
fprintf(stderr, "%s psyclpc external request daemon: Path '%s', debuglevel %d\n"
|
||||||
, time_stamp(), __DATE__, argv[0], ERQ_DEBUG
|
, time_stamp(), argv[0], ERQ_DEBUG
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -152,8 +152,8 @@ main(int argc, char *argv[])
|
||||||
|
|
||||||
/* Print information about this daemon to help debugging */
|
/* Print information about this daemon to help debugging */
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s XERQ %s: Path '%s', debuglevel %d\n"
|
fprintf(stderr, "%s psyclpc extended external request daemon: Path '%s', debuglevel %d\n"
|
||||||
, time_stamp(), __DATE__, argv[0], ERQ_DEBUG
|
, time_stamp(), argv[0], ERQ_DEBUG
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue