From 3fde8d9f569953899dca6b984965268a7aa60a04 Mon Sep 17 00:00:00 2001 From: katherine Date: Tue, 4 Jun 2019 13:57:14 -0700 Subject: trim extraneous semicolons not sure why those happened --- simple-opt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'simple-opt.h') diff --git a/simple-opt.h b/simple-opt.h index fbd2d83..d85ee3d 100644 --- a/simple-opt.h +++ b/simple-opt.h @@ -429,7 +429,7 @@ opt_copy_and_return: static int sub_simple_opt_wrap_print(FILE *f, unsigned width, unsigned col, unsigned line_start, const char *s) { - bool add_newline = false, first_word = true, first_line = true;; + bool add_newline = false, first_word = true, first_line = true; unsigned i, j, word_start, word_end; if (width != 0 && line_start >= width) { @@ -725,11 +725,11 @@ static void simple_opt_print_usage(FILE *f, unsigned width, /* print option description */ if (options[i].description != NULL) { if (col < width) { - fprintf(f, " ");; + fprintf(f, " "); col++; } if (col < width) { - fprintf(f, " ");; + fprintf(f, " "); col++; } sub_simple_opt_wrap_print(f, width, col, desc_line_start, -- cgit v1.2.3