From f9acf3b2f17970264f409df1e3f8f48ee4ba97f9 Mon Sep 17 00:00:00 2001 From: Ethan Sommer Date: Fri, 29 May 2020 20:02:08 -0400 Subject: [PATCH] cp: remove unneeded semicolons following one-line function declarations --- toys/posix/cp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/toys/posix/cp.c b/toys/posix/cp.c index 179a5c15..c11da163 100644 --- a/toys/posix/cp.c +++ b/toys/posix/cp.c @@ -468,9 +468,9 @@ void mv_main(void) // Export cp flags into install's flag context. -static inline int cp_flag_F(void) { return FLAG_F; }; -static inline int cp_flag_p(void) { return FLAG_p; }; -static inline int cp_flag_v(void) { return FLAG_v; }; +static inline int cp_flag_F(void) { return FLAG_F; } +static inline int cp_flag_p(void) { return FLAG_p; } +static inline int cp_flag_v(void) { return FLAG_v; } // Switch to install's flag context #define FOR_install -- 2.39.2