aboutsummaryrefslogtreecommitdiffstats
path: root/src/ls.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:01:53 +0200
committerEric Wong <normalperson@yhbt.net>2008-08-31 04:02:09 -0700
commit6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa (patch)
tree94de57b9d0bae82be9e385c68b477d493179949e /src/ls.h
parentc52667aa8eee2a40547026735b9670a2221d4168 (diff)
downloadmpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.tar.gz
mpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.tar.xz
mpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.zip
pass constant pointers
And again, convert arguments to const.
Diffstat (limited to 'src/ls.h')
-rw-r--r--src/ls.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ls.h b/src/ls.h
index ed49c99d8..ce4f94b56 100644
--- a/src/ls.h
+++ b/src/ls.h
@@ -25,9 +25,9 @@ int lsPlaylists(int fd, const char *utf8path);
const char *getSuffix(const char *utf8file);
-int isValidRemoteUtf8Url(char *utf8url);
+int isValidRemoteUtf8Url(const char *utf8url);
-int isRemoteUrl(char *url);
+int isRemoteUrl(const char *url);
int myStat(const char *utf8file, struct stat *st);