diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-07-10 10:27:55 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-07-10 10:27:55 +0300 |
commit | f1b4f7590b9170e04636a66b92888163fc7cac9b (patch) | |
tree | 440b2fa1e8acf72f660cace240a6e8b2535f541f /python/rpmfts-py.c | |
parent | 7b7d879160bdf9288f0546203f015b2a8e639485 (diff) | |
download | librpm-tizen-f1b4f7590b9170e04636a66b92888163fc7cac9b.tar.gz librpm-tizen-f1b4f7590b9170e04636a66b92888163fc7cac9b.tar.bz2 librpm-tizen-f1b4f7590b9170e04636a66b92888163fc7cac9b.zip |
Fix bunch of string formatting warnings.
Diffstat (limited to 'python/rpmfts-py.c')
-rw-r--r-- | python/rpmfts-py.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmfts-py.c b/python/rpmfts-py.c index b81bada0d..ea3f4236f 100644 --- a/python/rpmfts-py.c +++ b/python/rpmfts-py.c @@ -63,7 +63,7 @@ rpmfts_debug (const char * msg, rpmftsObject * s) if (msg) fprintf(stderr, "*** %s(%p)", msg, s); if (s) - fprintf(stderr, " %d %d ftsp %p fts %p\n", s->ob_refcnt, s->active, s->ftsp, s->fts); + fprintf(stderr, " %zd %d ftsp %p fts %p\n", s->ob_refcnt, s->active, s->ftsp, s->fts); } static int |