diff options
author | Michael Adam <obnox@samba.org> | 2008-03-18 13:10:22 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-03-18 16:45:10 +0100 |
commit | e88e6568e4ea422c2841f67a67db01f2f8970b34 (patch) | |
tree | e08359b6e86fcd828f4e5cb6ffaae90d686c3c63 /source3/lib/replace/inet_ntoa.c | |
parent | 5c73dabd49bfca840c062e8c49d8765dc0e4531e (diff) | |
download | samba-e88e6568e4ea422c2841f67a67db01f2f8970b34.tar.gz samba-e88e6568e4ea422c2841f67a67db01f2f8970b34.tar.bz2 samba-e88e6568e4ea422c2841f67a67db01f2f8970b34.zip |
libreplace: remove trailing white spaces.
Michael
(cherry picked from commit 1f9ca7eed965904f67cf78fbac007432b8a057fd)
(This used to be commit a1d24f110b3edff636174e017eb56ba5b10df590)
Diffstat (limited to 'source3/lib/replace/inet_ntoa.c')
-rw-r--r-- | source3/lib/replace/inet_ntoa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/replace/inet_ntoa.c b/source3/lib/replace/inet_ntoa.c index f3e733fa61..e3b80ebef8 100644 --- a/source3/lib/replace/inet_ntoa.c +++ b/source3/lib/replace/inet_ntoa.c @@ -33,7 +33,7 @@ char *rep_inet_ntoa(struct in_addr ip) { uint8_t *p = (uint8_t *)&ip.s_addr; static char buf[18]; - slprintf(buf, 17, "%d.%d.%d.%d", + slprintf(buf, 17, "%d.%d.%d.%d", (int)p[0], (int)p[1], (int)p[2], (int)p[3]); return buf; } |