diff --git a/aor/ar3000.c b/aor/ar3000.c index 00650e11f..327c42f20 100644 --- a/aor/ar3000.c +++ b/aor/ar3000.c @@ -2,7 +2,7 @@ * Hamlib AOR backend - AR3000 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ar3000.c,v 1.4 2004-06-14 21:09:48 fillods Exp $ + * $Id: ar3000.c,v 1.5 2004-09-07 20:37:41 fillods Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as @@ -188,7 +188,7 @@ const struct rig_caps ar3000a_caps = { * return value: RIG_OK if everything's fine, negative value otherwise * TODO: error case handling */ -int ar3k_transaction(RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len) +static int ar3k_transaction(RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len) { int retval; struct rig_state *rs; diff --git a/aor/ar3030.c b/aor/ar3030.c index ee046c48e..b91aa741f 100644 --- a/aor/ar3030.c +++ b/aor/ar3030.c @@ -2,7 +2,7 @@ * Hamlib AOR backend - AR3030 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ar3030.c,v 1.5 2004-08-08 19:42:59 fillods Exp $ + * $Id: ar3030.c,v 1.6 2004-09-07 20:37:41 fillods Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as @@ -213,7 +213,7 @@ const struct rig_caps ar3030_caps = { * return value: RIG_OK if everything's fine, negative value otherwise * TODO: error case handling */ -int ar3030_transaction(RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len) +static int ar3030_transaction(RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len) { int retval; struct rig_state *rs;