From: Jeffrey Altman Date: Fri, 31 Aug 2007 15:32:15 +0000 (+0000) Subject: DEVEL15-dafs-commit-updatelist-change-20070831 X-Git-Tag: openafs-devel-1_5_25~35 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=67b13e8488d3d0b76abc5be59acf71281bba4ea8;p=packages%2Fo%2Fopenafs.git DEVEL15-dafs-commit-updatelist-change-20070831 actually save the changed value (cherry picked from commit 8056e9347ac139263cdc4b051ec7763d80c11214) --- diff --git a/src/vol/volume.c b/src/vol/volume.c index bf1668520..41af925b1 100644 --- a/src/vol/volume.c +++ b/src/vol/volume.c @@ -4456,7 +4456,7 @@ VAddToVolumeUpdateList_r(Error * ec, Volume * vp) UpdateList = (VolumeId *) malloc(sizeof(VolumeId) * updateSize); } else { if (nUpdatedVolumes == updateSize) { - updateSize << 1; + updateSize <<= 1; if (updateSize > 524288) { Log("warning: there is likely a bug in the volume update scanner\n"); return;