Remove redundant initialization of lfile to reduce executable size by
8192 bytes (noted by Mike Castle).
This commit is contained in:
parent
00e56ada9c
commit
c308847274
@ -55,7 +55,7 @@
|
|||||||
#define __LOG_FILE "/var/log/messages"
|
#define __LOG_FILE "/var/log/messages"
|
||||||
|
|
||||||
/* Path to the unix socket */
|
/* Path to the unix socket */
|
||||||
static char lfile[BUFSIZ] = "";
|
static char lfile[BUFSIZ];
|
||||||
|
|
||||||
static char *logFilePath = __LOG_FILE;
|
static char *logFilePath = __LOG_FILE;
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@
|
|||||||
#define __LOG_FILE "/var/log/messages"
|
#define __LOG_FILE "/var/log/messages"
|
||||||
|
|
||||||
/* Path to the unix socket */
|
/* Path to the unix socket */
|
||||||
static char lfile[BUFSIZ] = "";
|
static char lfile[BUFSIZ];
|
||||||
|
|
||||||
static char *logFilePath = __LOG_FILE;
|
static char *logFilePath = __LOG_FILE;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user