]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FreeTDM: Remove trailing whitespace at end of ftdm_{copy,set}_string()
authorStefan Knoblich <stkn@openisdn.net>
Fri, 21 Sep 2012 23:05:51 +0000 (01:05 +0200)
committerStefan Knoblich <stkn@openisdn.net>
Sat, 6 Oct 2012 14:50:55 +0000 (16:50 +0200)
Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
libs/freetdm/src/include/ftdm_os.h

index 39afec94be3be0565ca3ed19648f9de0dbc7a8d9..d9d2b23205582aeb7cd562dc33c01f012faf9f6d 100644 (file)
@@ -64,10 +64,10 @@ typedef uint64_t ftdm_time_t;
 #endif
 
 /*! \brief strncpy replacement */
-#define ftdm_copy_string(x,y,z) strncpy(x, y, z - 1) 
+#define ftdm_copy_string(x,y,z) strncpy(x, y, z - 1)
 
 /*! \brief strncpy into a fixed-length buffer */
-#define ftdm_set_string(x,y) strncpy(x, y, sizeof(x)-1) 
+#define ftdm_set_string(x,y) strncpy(x, y, sizeof(x)-1)
 
 /*! \brief check for null or zero length string buffer */
 #define ftdm_strlen_zero(s) (!s || *s == '\0')