diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2011-08-26 01:46:57 -0500 |
---|---|---|
committer | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2011-08-26 17:31:58 -0500 |
commit | fe2d2e640bf7a196fd1fe1f2efb7d4ba6382ce4f (patch) | |
tree | cb4061961e4785ce16720d360233a9ed24c34ab5 /src/TextPop.c | |
parent | 42123013118c42f40873b1b8785c7e5ce2734965 (diff) |
Fix ambiguous 'else' warnings
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/TextPop.c')
-rw-r--r-- | src/TextPop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TextPop.c b/src/TextPop.c index 9977bd4..7bf4536 100644 --- a/src/TextPop.c +++ b/src/TextPop.c @@ -1020,13 +1020,14 @@ Boolean once_only, show_current; else XawTextSetInsertionPoint( tw, pos); - if (once_only) + if (once_only) { if (show_current) break; else { DoSearch(search); return(TRUE); } + } count++; } |