diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-04-13 07:26:37 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-04-13 07:26:37 +0000 |
commit | a16bbc3990cc3c9ef1228508246f9f6840d9ffa2 (patch) | |
tree | 66c73168561473bb37fb4c9a2122a6a612538e3a /match.c | |
parent | cf0d1d819a847186c1b30535ec83185b070280c8 (diff) | |
download | rsync-a16bbc3990cc3c9ef1228508246f9f6840d9ffa2.tar.gz |
a few code cleanups
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |