diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2017-04-12 10:51:02 +0200 |
|---|---|---|
| committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2017-04-23 07:51:38 +0300 |
| commit | e0380edc4ed7b3d2d75f8852533a2939aa05a870 (patch) | |
| tree | c9b903307e49e251d709b81cd9e33c21d27f1cba /libguile-ssh | |
| parent | doc/guile-ssh.texi: Fix a grammar error (diff) | |
| download | guile-ssh-e0380edc4ed7b3d2d75f8852533a2939aa05a870.tar.gz | |
libguile-ssh/channel-type.c (channel_tag): Make 'static'.
* libguile-ssh/channel-type.c (channel_tag): Make 'static'
* libguile-ssh/channel-type.h (channel_tag): Remove.
Signed-off-by: Artyom V. Poptsov <poptsov.artyom@gmail.com>
Diffstat (limited to 'libguile-ssh')
| -rw-r--r-- | libguile-ssh/channel-type.c | 2 | ||||
| -rw-r--r-- | libguile-ssh/channel-type.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/libguile-ssh/channel-type.c b/libguile-ssh/channel-type.c index 1c63c6c..a9b461d 100644 --- a/libguile-ssh/channel-type.c +++ b/libguile-ssh/channel-type.c @@ -27,7 +27,7 @@ #include "error.h" #include "common.h" -scm_t_bits channel_tag; /* Smob tag. */ +static scm_t_bits channel_tag; enum { DEFAULT_PORT_R_BUFSZ = 256, /* Default read buffer size */ diff --git a/libguile-ssh/channel-type.h b/libguile-ssh/channel-type.h index 8810248..72bd16b 100644 --- a/libguile-ssh/channel-type.h +++ b/libguile-ssh/channel-type.h @@ -22,8 +22,6 @@ #include <libguile.h> #include <libssh/libssh.h> -extern scm_t_bits channel_tag; - /* Smob data. */ struct channel_data { |
