diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 15:54:39 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 15:54:39 +0000 |
commit | b9297c29623c1e4db9a654cff80d1ac016fdbaee (patch) | |
tree | 2f593f482089d568f7cf7614873b114e88046755 /man_validate.c | |
parent | ed04d894e573be8a07ec7f68bb5245f83ce49beb (diff) | |
download | mandoc-b9297c29623c1e4db9a654cff80d1ac016fdbaee.tar.gz |
Removed restriction on integer manual sections in -man.
Diffstat (limited to 'man_validate.c')
-rw-r--r-- | man_validate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man_validate.c b/man_validate.c index a4efebb8..a7b21167 100644 --- a/man_validate.c +++ b/man_validate.c @@ -178,7 +178,7 @@ check_root(CHKARGS) */ m->meta.title = mandoc_strdup("unknown"); m->meta.date = time(NULL); - m->meta.msec = 1; + m->meta.msec = mandoc_strdup("1"); } return(1); |