From 8cfe78560c31f8097e90215e640cc4f12b2de22b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Tue, 7 Sep 2004 20:37:41 +0000 Subject: [PATCH] misc: made internal function static git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1838 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- aor/ar3000.c | 4 ++-- aor/ar3030.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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;