From 2ea717d900ea48bb8b75b4b86f1e3b42034b8e12 Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 1 Feb 2004 17:13:42 +0000 Subject: [PATCH] More printf lint. --- example/sample7.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/sample7.c b/example/sample7.c index 279642ff..7d5a73e9 100644 --- a/example/sample7.c +++ b/example/sample7.c @@ -1,5 +1,5 @@ /* - $Id: sample7.c,v 1.2 2004/01/29 04:22:49 rocky Exp $ + $Id: sample7.c,v 1.3 2004/02/01 17:13:42 rocky Exp $ Copyright (C) 2004 Rocky Bernstein @@ -82,8 +82,8 @@ main(int argc, const char *argv[]) + (i / ISO_BLOCKSIZE), 1) ) { - fprintf(stderr, "Error reading ISO 9660 file at lsn %d\n", - statbuf->lsn + (i / ISO_BLOCKSIZE)); + fprintf(stderr, "Error reading ISO 9660 file at lsn %lu\n", + (long unsigned int) statbuf->lsn + (i / ISO_BLOCKSIZE)); return 4; }