]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
guile: Syntactic nitpicking.
authorLudovic Courtès <ludo@gnu.org>
Mon, 28 Sep 2009 20:40:08 +0000 (22:40 +0200)
committerLudovic Courtès <ludo@gnu.org>
Mon, 28 Sep 2009 20:47:08 +0000 (22:47 +0200)
* guile/src/core.c (SCM_GNUTLS_MAKE_SESSION_DATA,
  SCM_GNUTLS_SET_SESSION_RECORD_PORT): Remove extraneous semicolon.

guile/src/core.c

index 693d11f17698b410f5b616318e9e1bf67adf9f4d..da711c216e96a860b99a4bc5026e79849b035b11 100644 (file)
@@ -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)))