aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/fortune
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2022-10-03 23:10:42 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2022-10-03 23:10:42 +0000
commitdb695788fc3d1eb3ff4cb258710f874953324208 (patch)
tree9979a517608012c664add57be2d14834e25c41e3 /usr.bin/fortune
parentd81082a7ad25f26309a1466b9ad565f507bed275 (diff)
downloadsrc-db695788fc3d1eb3ff4cb258710f874953324208.tar.gz
src-db695788fc3d1eb3ff4cb258710f874953324208.zip
fortune: Unindent a debug printf in get_fort().
The debug printf is intended to execute after the loop has ended to log the selected file. Reviewed by: imp, emaste Reported by: GCC Differential Revision: https://reviews.freebsd.org/D36815
Diffstat (limited to 'usr.bin/fortune')
-rw-r--r--usr.bin/fortune/fortune/fortune.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/fortune/fortune/fortune.c b/usr.bin/fortune/fortune/fortune.c
index f375ec645ede..0a49c3229077 100644
--- a/usr.bin/fortune/fortune/fortune.c
+++ b/usr.bin/fortune/fortune/fortune.c
@@ -958,7 +958,7 @@ get_fort(void)
else {
choice = arc4random_uniform(100);
DPRINTF(1, (stderr, "choice = %d\n", choice));
- for (fp = File_list; fp->percent != NO_PROB; fp = fp->next)
+ for (fp = File_list; fp->percent != NO_PROB; fp = fp->next) {
if (choice < fp->percent)
break;
else {
@@ -967,9 +967,10 @@ get_fort(void)
" skip \"%s\", %d%% (choice = %d)\n",
fp->name, fp->percent, choice));
}
- DPRINTF(1, (stderr,
- "using \"%s\", %d%% (choice = %d)\n",
- fp->name, fp->percent, choice));
+ }
+ DPRINTF(1, (stderr,
+ "using \"%s\", %d%% (choice = %d)\n",
+ fp->name, fp->percent, choice));
}
if (fp->percent != NO_PROB)
get_tbl(fp);