diff options
author | Wayne Davison <wayned@samba.org> | 2007-05-22 05:58:59 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2007-05-22 05:58:59 +0000 |
commit | 3d0a159d96d153144fe3bd2a2c59a62ec2a62d89 (patch) | |
tree | ae19e32d04cf789582ee735a370ac04a5bc71acd /hlink.c | |
parent | 8ea07c0030ee9dd2c56d4c8c57139887c0c6794e (diff) | |
download | rsync-3d0a159d96d153144fe3bd2a2c59a62ec2a62d89.tar.gz rsync-3d0a159d96d153144fe3bd2a2c59a62ec2a62d89.tar.bz2 rsync-3d0a159d96d153144fe3bd2a2c59a62ec2a62d89.zip |
Added a comment to a shared iterator to avoid a warning from IBM's checker.
Diffstat (limited to 'hlink.c')
-rw-r--r-- | hlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -225,7 +225,7 @@ static void match_gnums(int32 *ndx_list, int ndx_count) for (from = 0; from < ndx_count; from++) { for (file = cur_flist->sorted[ndx_list[from]], gnum = F_HL_GNUM(file), prev = -1; from < ndx_count-1; - file = file_next, gnum = gnum_next, from++) + file = file_next, gnum = gnum_next, from++) /*SHARED ITERATOR*/ { file_next = cur_flist->sorted[ndx_list[from+1]]; gnum_next = F_HL_GNUM(file_next); |