summaryrefslogtreecommitdiff
path: root/src/gpgrt-int.h
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2022-09-15 15:08:27 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2022-09-15 15:08:27 +0900
commit6f103890e9728072e1c9c1e0a1d7f87220d8eecc (patch)
tree5ec6a17cb199669c3b20da5eec477055d3a78fce /src/gpgrt-int.h
parent10dc853291a1786f061e01cdcf477be0c31441b1 (diff)
downloadlibgpg-error-6f103890e9728072e1c9c1e0a1d7f87220d8eecc.tar.gz
Remove extra semicolons.
* src/gpgrt-int.h: Remove extra. * src/visibility.h: Likewise. -- Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'src/gpgrt-int.h')
-rw-r--r--src/gpgrt-int.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gpgrt-int.h b/src/gpgrt-int.h
index cb14191..8df7901 100644
--- a/src/gpgrt-int.h
+++ b/src/gpgrt-int.h
@@ -562,7 +562,7 @@ void _gpgrt_log_flush (void);
void _gpgrt_logv_printhex (const void *buffer, size_t length,
const char *fmt, va_list arg_ptr);
void _gpgrt_log_printhex (const void *buffer, size_t length,
- const char *fmt, ...) GPGRT_ATTR_PRINTF(3,4);;
+ const char *fmt, ...) GPGRT_ATTR_PRINTF(3,4);
void _gpgrt_logv_clock (const char *fmt, va_list arg_ptr);
void _gpgrt_log_clock (const char *fmt, ...) GPGRT_ATTR_PRINTF(1,2);
@@ -627,9 +627,9 @@ gpg_err_code_t _gpgrt_make_pipe (int filedes[2], estream_t *r_fp,
int direction, int nonblock);
/* Convenience macros to create a pipe. */
-#define _gpgrt_create_pipe(a) _gpgrt_make_pipe ((a),NULL, 0, 0);
-#define _gpgrt_create_inbound_pipe(a,b,c) _gpgrt_make_pipe ((a), (b), -1, (c));
-#define _gpgrt_create_outbound_pipe(a,b,c) _gpgrt_make_pipe ((a), (b), 1, (c));
+#define _gpgrt_create_pipe(a) _gpgrt_make_pipe ((a),NULL, 0, 0)
+#define _gpgrt_create_inbound_pipe(a,b,c) _gpgrt_make_pipe ((a), (b), -1, (c))
+#define _gpgrt_create_outbound_pipe(a,b,c) _gpgrt_make_pipe ((a), (b), 1, (c))
/* Fork and exec the program PGMNAME.