CVSROOT:        /sources/hurdextras
Module name:    xmlfs
Changes by:     Samuel Thibault <sthibaul>      24/11/16 17:16:47

Modified files:
        .              : netfs.c 

Log message:
        Fix 64b builds

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/xmlfs/netfs.c?cvsroot=hurdextras&r1=1.4&r2=1.5

Patches:
Index: netfs.c
===================================================================
RCS file: /sources/hurdextras/xmlfs/netfs.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- netfs.c     3 Oct 2023 19:30:28 -0000       1.4
+++ netfs.c     16 Nov 2024 22:16:47 -0000      1.5
@@ -311,7 +311,7 @@
   size_t size = -1;
   error_t err;
 
-  DEBUG ("NOTICE: %s (node: %s, offset: %lld, len: %d)\n", 
+  DEBUG ("NOTICE: %s (node: %s, offset: %lld, len: %zd)\n", 
         __PRETTY_FUNCTION__, node->nn->name, offset, *len);
 
   cur = xml_find_node (node->nn->pathname);
@@ -358,7 +358,7 @@
   /* Free nodes... */
   xml_find_node (NULL);
 
-  DEBUG ("NOTICE: read %d bytes of %s successfully\n", *len, 
node->nn->pathname);
+  DEBUG ("NOTICE: read %zd bytes of %s successfully\n", *len, 
node->nn->pathname);
 
   return 0;
 }

_______________________________________________
Hurdextras-commit mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/hurdextras-commit

Reply via email to