aboutsummaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-04-13 07:26:37 +0000
committerAndrew Tridgell <tridge@samba.org>1998-04-13 07:26:37 +0000
commita16bbc3990cc3c9ef1228508246f9f6840d9ffa2 (patch)
tree66c73168561473bb37fb4c9a2122a6a612538e3a /match.c
parentcf0d1d819a847186c1b30535ec83185b070280c8 (diff)
downloadandroid_external_rsync-a16bbc3990cc3c9ef1228508246f9f6840d9ffa2.tar.gz
android_external_rsync-a16bbc3990cc3c9ef1228508246f9f6840d9ffa2.tar.bz2
android_external_rsync-a16bbc3990cc3c9ef1228508246f9f6840d9ffa2.zip
a few code cleanups
Diffstat (limited to 'match.c')
-rw-r--r--match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/match.c b/match.c
index a97e7e14..7f6e7088 100644
--- a/match.c
+++ b/match.c
@@ -56,7 +56,7 @@ static tag *tag_table;
static int compare_targets(struct target *t1,struct target *t2)
{
- return(t1->t - t2->t);
+ return((int)t1->t - (int)t2->t);
}