diff mbox series

[-next] tools/counter: Remove unneeded semicolon

Message ID 20231220005143.84987-1-yang.lee@linux.alibaba.com (mailing list archive)
State Handled Elsewhere
Headers show
Series [-next] tools/counter: Remove unneeded semicolon | expand

Commit Message

Yang Li Dec. 20, 2023, 12:51 a.m. UTC
./tools/counter/counter_watch_events.c:233:3-4: Unneeded semicolon
./tools/counter/counter_watch_events.c:234:2-3: Unneeded semicolon
./tools/counter/counter_watch_events.c:333:2-3: Unneeded semicolon

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=7782
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 tools/counter/counter_watch_events.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Fabrice Gasnier Dec. 20, 2023, 3:53 p.m. UTC | #1
On 12/20/23 01:51, Yang Li wrote:
> ./tools/counter/counter_watch_events.c:233:3-4: Unneeded semicolon
> ./tools/counter/counter_watch_events.c:234:2-3: Unneeded semicolon
> ./tools/counter/counter_watch_events.c:333:2-3: Unneeded semicolon
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=7782
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>

Hi Yang,

Reviewed-by: Fabrice Gasnier <fabrice.gasnier@foss.st.com>

Thanks for your patch,
Best Regards,
Fabrice

> ---
>  tools/counter/counter_watch_events.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/tools/counter/counter_watch_events.c b/tools/counter/counter_watch_events.c
> index 3898fe7e35ec..2ce4c99ebd01 100644
> --- a/tools/counter/counter_watch_events.c
> +++ b/tools/counter/counter_watch_events.c
> @@ -230,8 +230,8 @@ int main(int argc, char **argv)
>  			break;
>  		default:
>  			return EXIT_FAILURE;
> -		};
> -	};
> +		}
> +	}
>  
>  	if (nwatch) {
>  		watches = calloc(nwatch, sizeof(*watches));
> @@ -330,7 +330,7 @@ int main(int argc, char **argv)
>  			i++;
>  			break;
>  		}
> -	};
> +	}
>  
>  	if (debug)
>  		print_watch(watches, nwatch);
William Breathitt Gray Dec. 20, 2023, 4:44 p.m. UTC | #2
On Wed, 20 Dec 2023 08:51:43 +0800, Yang Li wrote:
> ./tools/counter/counter_watch_events.c:233:3-4: Unneeded semicolon
> ./tools/counter/counter_watch_events.c:234:2-3: Unneeded semicolon
> ./tools/counter/counter_watch_events.c:333:2-3: Unneeded semicolon
> 
> 

Applied, thanks!

[1/1] tools/counter: Remove unneeded semicolon
      commit: b7760cf94d4f2665bf40d08dd69aa5d0b4aa593f

William Breathitt Gray
diff mbox series

Patch

diff --git a/tools/counter/counter_watch_events.c b/tools/counter/counter_watch_events.c
index 3898fe7e35ec..2ce4c99ebd01 100644
--- a/tools/counter/counter_watch_events.c
+++ b/tools/counter/counter_watch_events.c
@@ -230,8 +230,8 @@  int main(int argc, char **argv)
 			break;
 		default:
 			return EXIT_FAILURE;
-		};
-	};
+		}
+	}
 
 	if (nwatch) {
 		watches = calloc(nwatch, sizeof(*watches));
@@ -330,7 +330,7 @@  int main(int argc, char **argv)
 			i++;
 			break;
 		}
-	};
+	}
 
 	if (debug)
 		print_watch(watches, nwatch);