]> git.wh0rd.org - dump.git/blobdiff - common/dumprmt.c
64bit and glibc 2.2.2 fixes.
[dump.git] / common / dumprmt.c
index dcd319d334581afe852bb665f5cc2a2c5108d7f6..503b933162538f513e1fd2f2d42f3f1cfee3da70 100644 (file)
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id: dumprmt.c,v 1.14 2000/12/04 15:43:16 stelian Exp $";
+       "$Id: dumprmt.c,v 1.16 2001/02/22 10:57:39 stelian Exp $";
 #endif /* not lint */
 
+#include <config.h>
 #ifdef __linux__
 #include <sys/types.h>
 #include <linux/types.h>
@@ -317,7 +318,7 @@ rmtwrite(const char *buf, size_t count)
 {
        char line[30];
 
-       (void)snprintf(line, sizeof (line), "W%d\n", count);
+       (void)snprintf(line, sizeof (line), "W%ld\n", (long)count);
        write(tormtape, line, strlen(line));
        write(tormtape, buf, count);
        return (rmtreply("write"));