]> git.tuebingen.mpg.de Git - dss.git/blobdiff - string.c
Fix "comma after last element" warning.
[dss.git] / string.c
index 91ad3e78e6925fd41eda7d9d20dd1e0eb24a8943..22d39056e8cbf6169914c25c58b6eb56b45f9cdf 100644 (file)
--- a/string.c
+++ b/string.c
@@ -1,3 +1,8 @@
+/*
+ * Copyright (C) 2004-2010 Andre Noll <maan@systemlinux.org>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
 #include <string.h>
 #include <stdlib.h>
 #include <stdio.h>
@@ -234,7 +239,7 @@ __must_check __malloc char *dss_logname(void)
  *
  * \return The number of substrings found in \a args.
  */
-__must_check unsigned split_args(char *args, char *** const argv_ptr, const char *delim)
+unsigned split_args(char *args, char *** const argv_ptr, const char *delim)
 {
        char *p = args;
        char **argv;