summaryrefslogtreecommitdiffstats
path: root/common/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/utils.c')
-rw-r--r--common/utils.c2
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 @@
44 * @return a pointer to the terminating `\0' character of @s1, 44 * @return a pointer to the terminating `\0' character of @s1,
45 * or NULL if @s1 or @s2 is NULL. 45 * or NULL if @s1 or @s2 is NULL.
46 */ 46 */
47char *stpcpy(char * s1, const char * s2) 47char *stpcpy(char *s1, const char *s2)
48{ 48{
49 if (s1 == NULL || s2 == NULL) 49 if (s1 == NULL || s2 == NULL)
50 return NULL; 50 return NULL;