From 4207c342594b98345240ba663035619314d304ef Mon Sep 17 00:00:00 2001 From: NatePW Date: Tue, 3 Jan 2023 16:40:23 -0800 Subject: [PATCH] Remove unneeded break after return in switch case --- sa_common.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sa_common.c b/sa_common.c index 7bef23d..ee0c99a 100644 --- a/sa_common.c +++ b/sa_common.c @@ -748,7 +748,6 @@ int parse_timestamp(char *argv[], int *opt, struct tstamp *tse, strncpy(timestamp, argv[(*opt)++], 10); timestamp[10] = '\0'; return decode_epoch(timestamp, tse); - break; default: strncpy(timestamp, def_timestamp, 8); -- 2.40.0