diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-06-28 13:20:11 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-06-28 13:20:11 +0000 |
commit | 23968b1f758ae3a1a1cfb6ea2a8eb28cb7aa1ebf (patch) | |
tree | 79e8cc0b7eba29e0a66e8d90e24671677f67ad57 /syslogd.c | |
parent | f2fc13115a90ba2ca575352b04bd8abf7af64d23 (diff) | |
download | rsyslog-23968b1f758ae3a1a1cfb6ea2a8eb28cb7aa1ebf.tar.gz rsyslog-23968b1f758ae3a1a1cfb6ea2a8eb28cb7aa1ebf.tar.bz2 rsyslog-23968b1f758ae3a1a1cfb6ea2a8eb28cb7aa1ebf.zip |
some printf format changes for off_t plus makefile updates...
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3026,14 +3026,14 @@ again: /* didn't work out, so disable... */ f->f_type = F_UNUSED; snprintf(errMsg, sizeof(errMsg), - "no longer writing to file %s; grown beyond configured file size of %llu bytes, actual size %llu - configured command did not resolve situation\n", + "no longer writing to file %s; grown beyond configured file size of %lld bytes, actual size %lld - configured command did not resolve situation\n", f->f_un.f_fname, f->f_sizeLimit, actualFileSize); errno = 0; logerror(errMsg); return; } else { snprintf(errMsg, sizeof(errMsg), - "file %s had grown beyond configured file size of %llu bytes, actual size was %llu - configured command resolved situation\n", + "file %s had grown beyond configured file size of %lld bytes, actual size was %lld - configured command resolved situation\n", f->f_un.f_fname, f->f_sizeLimit, actualFileSize); errno = 0; logerror(errMsg); |