From 366c100ebb89651eef6b71139bd92b2c27b63738 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 6 Jul 2010 09:28:27 +0200 Subject: [PATCH] src/common.c: Add missing folding markers. --- src/common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common.c b/src/common.c index 3cd40d5..23714ea 100644 --- a/src/common.c +++ b/src/common.c @@ -182,7 +182,7 @@ static uint32_t rgb_to_uint32 (double *rgb) /* {{{ */ | ((uint32_t) b)); } /* }}} uint32_t rgb_to_uint32 */ -static int uint32_to_rgb (uint32_t color, double *rgb) +static int uint32_to_rgb (uint32_t color, double *rgb) /* {{{ */ { uint8_t r; uint8_t g; @@ -256,12 +256,12 @@ char *strtolower (char *str) /* {{{ */ return (str); } /* }}} char *strtolower */ -char *strtolower_copy (const char *str) +char *strtolower_copy (const char *str) /* {{{ */ { if (str == NULL) return (NULL); return (strtolower (strdup (str))); -} +} /* }}} char *strtolower_copy */ /* vim: set sw=2 sts=2 et fdm=marker : */ -- 2.30.2