diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-09-26 07:04:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-09-26 07:04:26 +0000 |
commit | 1f59dd3b334e8678abb964a88a2d8874b9f40789 (patch) | |
tree | a27d976260d0a0e276ed471123b12fc5aa8752be /usr.bin/bc/scan.l | |
parent | 2bcaea0ab581309c57b8f77240892c3f17d64f93 (diff) |
spacing
Diffstat (limited to 'usr.bin/bc/scan.l')
-rw-r--r-- | usr.bin/bc/scan.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/bc/scan.l b/usr.bin/bc/scan.l index 40952ff88df..b0e35c2ed3f 100644 --- a/usr.bin/bc/scan.l +++ b/usr.bin/bc/scan.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: scan.l,v 1.2 2003/09/26 07:02:52 deraadt Exp $ */ +/* $OpenBSD: scan.l,v 1.3 2003/09/26 07:04:25 deraadt Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -18,7 +18,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: scan.l,v 1.2 2003/09/26 07:02:52 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: scan.l,v 1.3 2003/09/26 07:04:25 deraadt Exp $"; #endif /* not lint */ #include <err.h> @@ -183,7 +183,7 @@ add_str(const char *str) if (strlen(strbuf) + arglen + 1> strbuf_sz) { size_t newsize; - char * p; + char *p; newsize = strbuf_sz + arglen + 1; p = realloc(strbuf, newsize); |