X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=common%2Fdumprmt.c;h=503b933162538f513e1fd2f2d42f3f1cfee3da70;hp=31eb63fc8b550ccd27202848398d834e9d6181f9;hb=401a4d13e4c30d46074531c6c26efefcaf3bbdaf;hpb=52ed7d6e29b14c6ec0d7e4427c0b4c3c20084f1a diff --git a/common/dumprmt.c b/common/dumprmt.c index 31eb63f..503b933 100644 --- a/common/dumprmt.c +++ b/common/dumprmt.c @@ -41,7 +41,7 @@ #ifndef lint static const char rcsid[] = - "$Id: dumprmt.c,v 1.15 2000/12/21 11:14:53 stelian Exp $"; + "$Id: dumprmt.c,v 1.16 2001/02/22 10:57:39 stelian Exp $"; #endif /* not lint */ #include @@ -318,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"));