summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-28 22:40:08 +0200
committerLudovic Courtès <ludo@gnu.org>2009-10-02 09:31:15 +0200
commitff34f82174c2b49018e83c934abcc44193e867a3 (patch)
treeae5f14f0150833cf5d62952d471ed6ad7a0c773d
parentabd5fcffff4b9d7edddb946dcd2e80f771f3d9a0 (diff)
downloadgnutls-ff34f82174c2b49018e83c934abcc44193e867a3.tar.gz
guile: Syntactic nitpicking.
* guile/src/core.c (SCM_GNUTLS_MAKE_SESSION_DATA, SCM_GNUTLS_SET_SESSION_RECORD_PORT): Remove extraneous semicolon.
-rw-r--r--guile/src/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/guile/src/core.c b/guile/src/core.c
index 3ea79407d6..82bd37f28c 100644
--- a/guile/src/core.c
+++ b/guile/src/core.c
@@ -56,7 +56,7 @@ const char scm_gnutls_array_error_message[] =
marked by the session mark procedure. */
#define SCM_GNUTLS_MAKE_SESSION_DATA() \
- scm_cons (SCM_BOOL_F, SCM_BOOL_F);
+ scm_cons (SCM_BOOL_F, SCM_BOOL_F)
#define SCM_GNUTLS_SET_SESSION_DATA(c_session, data) \
gnutls_session_set_ptr (c_session, (void *) SCM_UNPACK (data))
#define SCM_GNUTLS_SESSION_DATA(c_session) \
@@ -66,7 +66,7 @@ const char scm_gnutls_array_error_message[] =
SCM_SETCAR (SCM_GNUTLS_SESSION_DATA (c_session), \
scm_from_bool (c_is_fd))
#define SCM_GNUTLS_SET_SESSION_RECORD_PORT(c_session, port) \
- SCM_SETCDR (SCM_GNUTLS_SESSION_DATA (c_session), port);
+ SCM_SETCDR (SCM_GNUTLS_SESSION_DATA (c_session), port)
#define SCM_GNUTLS_SESSION_TRANSPORT_IS_FD(c_session) \
scm_to_bool (SCM_CAR (SCM_GNUTLS_SESSION_DATA (c_session)))