summaryrefslogtreecommitdiff
path: root/net/lopster/patches/patch-aa
blob: 58da972dd1b9dcb7b8365f622cf328374d2ba31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-aa,v 1.2 2001/03/28 02:35:38 hubertf Exp $

--- src/resume.c.orig	Tue Feb 13 22:03:14 2001
+++ src/resume.c
@@ -391,7 +391,7 @@
   if (stat(resume->filename, &st) < 0) {
     strcpy(text, _("not existent"));
   } else {
-    sprintf(text, "%lu", st.st_size);
+    sprintf(text, "%lu", (u_long)st.st_size);
   }
   gtk_ctree_node_set_text(ctree, node, 2, text);