Remove trailing whitespace. Sorry if this breaks your patches.
[oweals/opkg-lede.git] / libbb / safe_strncpy.c
index 0c5cf12efc581751b9b8be6a3066464741551f00..eb2dbabf1dea22aa72ef945acafa863feed13b04 100644 (file)
 
 
 
-/* Like strncpy but make sure the resulting string is always 0 terminated. */  
+/* Like strncpy but make sure the resulting string is always 0 terminated. */
 extern char * safe_strncpy(char *dst, const char *src, size_t size)
-{   
+{
        dst[size-1] = '\0';
-       return strncpy(dst, src, size-1);   
+       return strncpy(dst, src, size-1);
 }