diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-10-06 18:30:45 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-10-06 18:30:45 +0000 |
commit | c28d561d00949bc035ac5148b14d173f59b0e6eb (patch) | |
tree | 2b9274bf0b34ae72765570f2db5c5d6991c34de1 /usr.bin/mandoc/att.c | |
parent | d92baf269bc44da3972d7aa4181dd46394de0676 (diff) |
modernize style: "return" is not a function; ok cmp(1)
Diffstat (limited to 'usr.bin/mandoc/att.c')
-rw-r--r-- | usr.bin/mandoc/att.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/att.c b/usr.bin/mandoc/att.c index a1cd433ae42..c1e7a04157f 100644 --- a/usr.bin/mandoc/att.c +++ b/usr.bin/mandoc/att.c @@ -1,4 +1,4 @@ -/* $OpenBSD: att.c,v 1.10 2015/04/02 21:03:18 schwarze Exp $ */ +/* $OpenBSD: att.c,v 1.11 2015/10/06 18:30:43 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -44,5 +44,5 @@ mdoc_a2att(const char *p) LINE("V.3", "AT&T System\\~V Release\\~3 UNIX"); LINE("V.4", "AT&T System\\~V Release\\~4 UNIX"); - return(NULL); + return NULL; } |