diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/utils.c | 2 | ||||
-rw-r--r-- | common/utils.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/utils.c b/common/utils.c index 0f65f4a..4465490 100644 --- a/common/utils.c +++ b/common/utils.c @@ -44,7 +44,7 @@ * @return a pointer to the terminating `\0' character of @s1, * or NULL if @s1 or @s2 is NULL. */ -char *stpcpy(char * s1, const char * s2) +char *stpcpy(char *s1, const char *s2) { if (s1 == NULL || s2 == NULL) return NULL; diff --git a/common/utils.h b/common/utils.h index 412eb45..388a793 100644 --- a/common/utils.h +++ b/common/utils.h @@ -34,7 +34,7 @@ #include <plist/plist.h> #ifndef HAVE_STPCPY -char *stpcpy(char * s1, const char * s2); +char *stpcpy(char *s1, const char *s2); #endif char *string_concat(const char *str, ...); char *generate_uuid(); |