17 lines
789 B
Plaintext
17 lines
789 B
Plaintext
$OpenBSD: patch-lib_opencdk_literal_c,v 1.2 2011/06/21 09:55:43 ajacoutot Exp $
|
|
|
|
literal.c:124: warning: format '%lu' expects type 'long unsigned int', but argument 4 has type 'off_t'
|
|
literal.c:124: warning: format '%lu' expects type 'long unsigned int', but argument 4 has type 'off_t'
|
|
|
|
--- lib/opencdk/literal.c.orig Thu May 26 07:55:17 2011
|
|
+++ lib/opencdk/literal.c Tue Jun 21 11:01:18 2011
|
|
@@ -121,7 +121,7 @@ literal_decode (void *data, FILE * in, FILE * out)
|
|
while (!feof (in))
|
|
{
|
|
_cdk_log_debug ("literal_decode: part on %d size %lu\n",
|
|
- (int) pfx->blkmode.on, pfx->blkmode.size);
|
|
+ (int) pfx->blkmode.on, (long unsigned int) pfx->blkmode.size);
|
|
if (pfx->blkmode.on)
|
|
bufsize = pfx->blkmode.size;
|
|
else
|