diff options
author | Martin Szulecki | 2014-10-22 20:43:53 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-10-22 22:21:06 +0200 |
commit | 744ffa6da4839f4118b585f942985b3330ad3a32 (patch) | |
tree | 3f4ed80236e7b8af9ccea770c4555ccdacc237fd /common/utils.c | |
parent | 8bbf17c58e43a7345c7ae7d4af714cc1ce896820 (diff) | |
download | libimobiledevice-744ffa6da4839f4118b585f942985b3330ad3a32.tar.gz libimobiledevice-744ffa6da4839f4118b585f942985b3330ad3a32.tar.bz2 |
common: Change stpcpy() signature code style slightly
Diffstat (limited to 'common/utils.c')
-rw-r--r-- | common/utils.c | 2 |
1 files changed, 1 insertions, 1 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; |