diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-10-01 22:06:31 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-10-01 22:06:31 +0300 |
commit | ed633f19bdbb66ac12aaf66cf46b458558eaedbd (patch) | |
tree | bcba698970b3e66c79e61c9b376d172a74577d29 /profile.c | |
parent | db0190d23e173d1869906385d00f3cbc01559b72 (diff) | |
download | egawk-ed633f19bdbb66ac12aaf66cf46b458558eaedbd.tar.gz egawk-ed633f19bdbb66ac12aaf66cf46b458558eaedbd.tar.bz2 egawk-ed633f19bdbb66ac12aaf66cf46b458558eaedbd.zip |
Some cleanups and doc additions.
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -101,11 +101,12 @@ indent(long count) { int i; - if (do_profile) + if (do_profile) { if (count == 0) fprintf(prof_fp, "\t"); else fprintf(prof_fp, "%6ld ", count); + } assert(indent_level >= 0); for (i = 0; i < indent_level; i++) |