summaryrefslogtreecommitdiff
path: root/t_stub.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2003-08-22 00:31:46 +0000
committerWayne Davison <wayned@samba.org>2003-08-22 00:31:46 +0000
commit24c906d3f7f4db31884d4262ddf9824d91ff4a76 (patch)
treeadedb79ed25277269b70c3ed30c82f27e53322bd /t_stub.c
parent14820f635d47f0fce574f71353cc038e8021e4af (diff)
downloadrsync-24c906d3f7f4db31884d4262ddf9824d91ff4a76.tar.gz
Mark unused vars.
Diffstat (limited to 't_stub.c')
-rw-r--r--t_stub.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/t_stub.c b/t_stub.c
index 50ca4e19..88b697e1 100644
--- a/t_stub.c
+++ b/t_stub.c
@@ -29,7 +29,7 @@
int modify_window = 0;
struct exclude_struct **server_exclude_list;
- void rprintf(enum logcode UNUSED(code), const char *format, ...)
+ void rprintf(UNUSED(enum logcode code), const char *format, ...)
{
va_list ap;
va_start(ap, format);
@@ -44,9 +44,10 @@ struct exclude_struct **server_exclude_list;
exit(code);
}
- int check_exclude(struct exclude_struct **list, char *name, int name_is_dir)
+ int check_exclude(UNUSED(struct exclude_struct **list), UNUSED(char *name),
+ UNUSED(int name_is_dir))
{
- /* This function doesn't really get called in a test context, so
- * just reference our parameters to avoid compiler warnings. */
- return 0 && list && name && name_is_dir;
+ /* This function doesn't really get called in this test context, so
+ * just return 0. */
+ return 0;
}