diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-12-08 12:26:08 +0000 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-12-08 12:26:08 +0000 |
commit | 4c1ede779eab302e5db689ad9990c9aa2e56b237 (patch) | |
tree | 9e74d6f2a69125ef9048923c5ec80cf039267fc8 /src/conffile.c | |
parent | a257703e59163b4f38c38f549179b8e45ac68c63 (diff) |
Break at 80 columns
Diffstat (limited to 'src/conffile.c')
-rw-r--r-- | src/conffile.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/conffile.c b/src/conffile.c index 85bab7e..c123293 100644 --- a/src/conffile.c +++ b/src/conffile.c @@ -80,7 +80,9 @@ typedef int (*CONFFILE_HANDLER) (struct config_s *, const char *, * The handling function must return 0 if the directive was processed * properly. Any errors are reported by returning a non-zero value. */ -#define HANDLE_FUNC(func) int func(struct config_s* conf, const char* line, regmatch_t match[]) +#define HANDLE_FUNC(func) \ + int func(struct config_s* conf, const char* line, \ + regmatch_t match[]) /* * List all the handling functions. These are defined later, but they need |