Fix alignment of the trailing \

This commit is contained in:
Warner Losh 2003-08-22 01:56:17 +00:00
parent 49fd69053e
commit 3c33210ce8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119252

View File

@ -133,7 +133,7 @@ static void cleanup_editfile(void);
#define RTRIM(string) do { \
int _length; \
int _length; \
while (isspace(string[_length = strlen(string) - 1])) \
string[_length] = '\0'; \
} while (0)