summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorRalf Corsépius <corsepiu@fedoraproject.org>2007-10-06 08:54:44 +0200
committerRalf Corsépius <corsepiu@fedoraproject.org>2007-10-06 08:54:44 +0200
commit49382a79ca7e0bb2912c7653f423a3069e654863 (patch)
treee832d0bbe40d0be8f662fa21746325fe7e237186 /build
parent144038e68277b58980453f1e2a5fe44a1b7e508d (diff)
downloadrpm-49382a79ca7e0bb2912c7653f423a3069e654863.tar.gz
rpm-49382a79ca7e0bb2912c7653f423a3069e654863.tar.bz2
rpm-49382a79ca7e0bb2912c7653f423a3069e654863.zip
const-ify second arg of strtokWithQuotes.
Diffstat (limited to 'build')
-rw-r--r--build/files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/files.c b/build/files.c
index b975038d4..b830b7756 100644
--- a/build/files.c
+++ b/build/files.c
@@ -193,7 +193,7 @@ static void dumpAttrRec(const char * msg, AttrRec ar)
* @param s
* @param delim
*/
-static char *strtokWithQuotes(char *s, char *delim)
+static char *strtokWithQuotes(char *s, const char *delim)
{
static char *olds = NULL;
char *token;