diff options
author | imp <imp@FreeBSD.org> | 2003-08-22 01:56:17 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-08-22 01:56:17 +0000 |
commit | a6e94af67a04f83f9d55f45e2b486b8caa5e5357 (patch) | |
tree | 38998671c09283c13e287fbc238270ffd25db8b4 /sbin/camcontrol | |
parent | 3474251a8ef5c1e8274ca20f2cd90dd3aaa4c019 (diff) | |
download | FreeBSD-src-a6e94af67a04f83f9d55f45e2b486b8caa5e5357.zip FreeBSD-src-a6e94af67a04f83f9d55f45e2b486b8caa5e5357.tar.gz |
Fix alignment of the trailing \
Diffstat (limited to 'sbin/camcontrol')
-rw-r--r-- | sbin/camcontrol/modeedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/camcontrol/modeedit.c b/sbin/camcontrol/modeedit.c index 8c41b38..1702f19 100644 --- a/sbin/camcontrol/modeedit.c +++ b/sbin/camcontrol/modeedit.c @@ -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) |