diff options
author | Karel Klic <kklic@redhat.com> | 2009-12-07 12:27:31 +0100 |
---|---|---|
committer | Karel Klic <kklic@redhat.com> | 2009-12-07 12:27:31 +0100 |
commit | c7341fd8519a89af558b341f316931d851a747fc (patch) | |
tree | c00e2c7d70e075a8a77e79365fe39c298e9c706a /src | |
parent | 3bd822eac9229ac124fec89f7aa926cc7220972c (diff) | |
download | abrt-c7341fd8519a89af558b341f316931d851a747fc.tar.gz abrt-c7341fd8519a89af558b341f316931d851a747fc.tar.xz abrt-c7341fd8519a89af558b341f316931d851a747fc.zip |
Fixed fprintf format warning
Diffstat (limited to 'src')
-rw-r--r-- | src/Backtrace/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Backtrace/main.c b/src/Backtrace/main.c index 9be93ca5..8add8c42 100644 --- a/src/Backtrace/main.c +++ b/src/Backtrace/main.c @@ -148,7 +148,7 @@ int main(int argc, char **argv) if (size > FILE_SIZE_LIMIT) { - fprintf(stderr, "Input file too big (%zd). Maximum size is %zd.\n", + fprintf(stderr, "Input file too big (%zd). Maximum size is %d.\n", size, FILE_SIZE_LIMIT); exit(EX_IOERR); } |