From b85d5373e6ade2268bf6cce587cf9b094dfd06c2 Mon Sep 17 00:00:00 2001 From: brodsom Date: Tue, 19 Aug 2003 11:09:00 +0000 Subject: [PATCH] -Fix wrong format in a recent commit (Please review the warnings before commits) --- src/burp/backup.epp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/burp/backup.epp b/src/burp/backup.epp index 66d11fc6af..06554c86cf 100644 --- a/src/burp/backup.epp +++ b/src/burp/backup.epp @@ -36,7 +36,7 @@ */ /* -$Id: backup.epp,v 1.30 2003-08-15 10:23:42 aafemt Exp $ +$Id: backup.epp,v 1.31 2003-08-19 11:09:00 brodsom Exp $ */ #include "firebird.h" @@ -481,7 +481,7 @@ int BACKUP_backup(TEXT* dbb_file, TEXT* file_name) /* msg 176 closing file, committing, and finishing. %ld bytes written */ } else { char psz[64]; - ib_sprintf(psz, "%"QUADFORMAT, cumul_count); + ib_sprintf(psz, "%" QUADFORMAT "d", cumul_count); BURP_verbose(283, psz, NULL, NULL, NULL, NULL); /* msg 283 closing file, committing, and finishing. %s bytes written */ }