From 96cf67bd29957cfde6c5f15cfec7e370c6dbabe2 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Fri, 17 May 2013 02:29:46 -0400 Subject: Update source file format: remove TABs, use GNU coding styles. --- strcache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'strcache.c') diff --git a/strcache.c b/strcache.c index 497d652..ff6a2d1 100644 --- a/strcache.c +++ b/strcache.c @@ -57,7 +57,7 @@ static unsigned long total_size = 0; that this doesn't seem to be much of an issue in practice. */ static struct strcache * -new_cache() +new_cache () { struct strcache *new; new = xmalloc (bufsize + CACHE_BUFFER_OFFSET); @@ -208,7 +208,7 @@ strcache_add_len (const char *str, unsigned int len) } int -strcache_setbufsize(unsigned int size) +strcache_setbufsize (unsigned int size) { if (size > bufsize) bufsize = size; @@ -233,7 +233,7 @@ strcache_print_stats (const char *prefix) if (! strcache) { - printf(_("\n%s No strcache buffers\n"), prefix); + printf (_("\n%s No strcache buffers\n"), prefix); return; } -- cgit v1.2.3