diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-03-19 16:44:38 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-03-19 16:44:38 +0100 |
commit | a795ac92df35e5bf43ad53e422b2435b457ffdca (patch) | |
tree | 0006e7a995f9382f2cbd7f99d64983595a1e725f /guile | |
parent | 9070521cf49419cb28f7174efae7000042bf5728 (diff) | |
download | gnutls-a795ac92df35e5bf43ad53e422b2435b457ffdca.tar.gz |
guile: Don't declare `inline' functions that use `alloca ()'.
* guile/src/core.c (set_certificate_file): Remove `inline' keyword.
Diffstat (limited to 'guile')
-rw-r--r-- | guile/src/core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guile/src/core.c b/guile/src/core.c index 217ccede7e..ca544d4a6b 100644 --- a/guile/src/core.c +++ b/guile/src/core.c @@ -1,5 +1,5 @@ /* GNUTLS --- Guile bindings for GnuTLS. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2008 Free Software Foundation GNUTLS is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -15,7 +15,7 @@ License along with GNUTLS; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -/* Written by Ludovic Courtès <ludo@chbouib.org>. */ +/* Written by Ludovic Courtès <ludo@gnu.org>. */ #include <stdio.h> #include <string.h> @@ -1327,7 +1327,7 @@ typedef int (* certificate_set_data_function_t) (gnutls_certificate_credentials_ gnutls_x509_crt_fmt_t); /* Helper function to implement the `set-file!' functions. */ -static inline unsigned int +static unsigned int set_certificate_file (certificate_set_file_function_t set_file, SCM cred, SCM file, SCM format, const char *func_name) |