summary refs log tree commit diff stats
path: root/src/common/url.h
diff options
context:
space:
mode:
authorArnavion <arnavion@gmail.com>2014-12-15 10:25:28 -0800
committerArnavion <arnavion@gmail.com>2014-12-15 10:25:28 -0800
commitec7a0d6e13f0fa66299cab7fdad8e639e01ee9dd (patch)
tree9cd90ef8d8411f0278b69ac3155be60b7ff99643 /src/common/url.h
parenta86b03e939391f3567cc644800e1b13dceda1139 (diff)
Fixed some more signed-unsigned-comparison warnings.
Diffstat (limited to 'src/common/url.h')
-rw-r--r--src/common/url.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/url.h b/src/common/url.h
index 676f9a6d..1b1deb3d 100644
--- a/src/common/url.h
+++ b/src/common/url.h
@@ -36,6 +36,6 @@ void url_clear (void);
 void url_save_tree (const char *fname, const char *mode, gboolean fullpath);
 int url_last (int *, int *);
 int url_check_word (const char *word);
-void url_check_line (char *buf, int len);
+void url_check_line (char *buf);
 
 #endif