summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-10-22 10:43:34 +0200
committerDan McGee <dan@archlinux.org>2007-10-23 06:36:03 +0200
commit46eaa5c54200bfda402412e2f5b7df0eddc0230a (patch)
tree1c396c19e03a21ab380b947c4daf740045962b8d /lib/libalpm/util.c
parentf5b77eb9894ea92a08fac586ddf03e9ba70c3de8 (diff)
downloadpacman-46eaa5c54200bfda402412e2f5b7df0eddc0230a.tar.gz
pacman-46eaa5c54200bfda402412e2f5b7df0eddc0230a.tar.xz
Fix invalid static scoping of strverscmp
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index 9d4adb2d..016c0f40 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -81,7 +81,7 @@
equal to or greater than S2 (for more info, see the texinfo doc).
*/
-static int strverscmp (s1, s2)
+int strverscmp (s1, s2)
const char *s1;
const char *s2;
{