git: 78a211c5eb54 - stable/13 - fortune: Unindent a debug printf in get_fort().
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 11 Nov 2022 18:36:52 UTC
The branch stable/13 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=78a211c5eb5492ef76ae320747b80f59a456b010 commit 78a211c5eb5492ef76ae320747b80f59a456b010 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2022-10-03 23:10:42 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2022-11-11 18:18:53 +0000 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 (cherry picked from commit db695788fc3d1eb3ff4cb258710f874953324208) --- usr.bin/fortune/fortune/fortune.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/usr.bin/fortune/fortune/fortune.c b/usr.bin/fortune/fortune/fortune.c index 724fb4a2372e..2b8d390035c9 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);