diff options
author | ad <ad@pkgsrc.org> | 2001-01-28 19:16:03 +0000 |
---|---|---|
committer | ad <ad@pkgsrc.org> | 2001-01-28 19:16:03 +0000 |
commit | 9015deae4583d63333d93d04e12c7f909f81858d (patch) | |
tree | b70f7b6a7936148efb16068a859e2df2c4c938d4 /net/lopster/patches | |
parent | 35c7ea926bc85c56961af6a6f8ef6e1fac8b5cdc (diff) | |
download | pkgsrc-9015deae4583d63333d93d04e12c7f909f81858d.tar.gz |
lopster, a Gtk+ Napster clone.
Diffstat (limited to 'net/lopster/patches')
-rw-r--r-- | net/lopster/patches/patch-aa | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/lopster/patches/patch-aa b/net/lopster/patches/patch-aa new file mode 100644 index 00000000000..7102ee955cd --- /dev/null +++ b/net/lopster/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/01/28 19:16:03 ad Exp $ + +--- src/resume.c.orig Sun Jan 28 18:56:29 2001 ++++ src/resume.c Sun Jan 28 18:56:38 2001 +@@ -386,7 +386,7 @@ + if (stat(resume->filename, &st) < 0) { + strcpy(text, "non 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); + |