diff options
author | 2005-11-12 15:40:09 +0000 | |
---|---|---|
committer | 2005-11-12 15:40:09 +0000 | |
commit | 36c05a6d2c2d3d6138147160afc74e52fccff8ee (patch) | |
tree | 2eaec7608d4ab0877a4daf2e48872b7b70cc92db | |
parent | more asprintf; ok dhill@mindcry.org (diff) | |
download | wireguard-openbsd-36c05a6d2c2d3d6138147160afc74e52fccff8ee.tar.xz wireguard-openbsd-36c05a6d2c2d3d6138147160afc74e52fccff8ee.zip |
spacing
-rw-r--r-- | usr.sbin/config/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/main.c b/usr.sbin/config/main.c index b83116f6a9a..e0d0d4c45e2 100644 --- a/usr.sbin/config/main.c +++ b/usr.sbin/config/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.37 2005/04/28 22:28:00 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.38 2005/11/12 15:40:09 deraadt Exp $ */ /* $NetBSD: main.c,v 1.22 1997/02/02 21:12:33 thorpej Exp $ */ /* @@ -210,7 +210,7 @@ main(int argc, char *argv[]) last_component = (last_component) ? last_component + 1 : conffile; if (pflag) { int len = strlen(last_component) + 17; - p = emalloc(len); + p = emalloc(len); (void)snprintf(p, len, "../compile/%s.PROF", last_component); (void)addmkoption(intern("PROF"), "-pg"); (void)addoption(intern("GPROF"), NULL); |