2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-27 15:18:06 +00:00

treewide: Remove trailing whitespace

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Jesse Gross <jesse@nicira.com>
This commit is contained in:
Joe Perches
2010-08-30 00:24:53 -07:00
committed by Jesse Gross
parent 90a249dc93
commit d295e8e97a
70 changed files with 396 additions and 396 deletions

View File

@@ -32,7 +32,7 @@ ds_init(struct ds *ds)
}
void
ds_clear(struct ds *ds)
ds_clear(struct ds *ds)
{
ds->length = 0;
}
@@ -162,7 +162,7 @@ ds_put_format_valist(struct ds *ds, const char *format, va_list args_)
}
void
ds_put_printable(struct ds *ds, const char *s, size_t n)
ds_put_printable(struct ds *ds, const char *s, size_t n)
{
ds_reserve(ds, ds->length + n);
while (n-- > 0) {
@@ -189,7 +189,7 @@ ds_put_strftime(struct ds *ds, const char *template, const struct tm *tm)
ds->length += used;
return;
}
ds_reserve(ds, ds->length + (avail < 32 ? 64 : 2 * avail));
ds_reserve(ds, ds->length + (avail < 32 ? 64 : 2 * avail));
}
}