summaryrefslogtreecommitdiff
path: root/guile
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-09-28 22:47:08 +0200
commitcf61dc7006b8789951b058573ae1f824b264bd96 (patch)
treec8f3d23259ddc01c986883649a44de3e889354a1 /guile
parent2290dcb96e78e14b2a9cfa3158abc9d52f72d888 (diff)
downloadgnutls-cf61dc7006b8789951b058573ae1f824b264bd96.tar.gz
guile: Syntactic nitpicking.
* guile/src/core.c (SCM_GNUTLS_MAKE_SESSION_DATA, SCM_GNUTLS_SET_SESSION_RECORD_PORT): Remove extraneous semicolon.
Diffstat (limited to 'guile')
-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 693d11f176..da711c216e 100644
--- a/guile/src/core.c
+++ b/guile/src/core.c
@@ -60,7 +60,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) \
@@ -70,7 +70,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)))