From 4cab991c02e1e67a6b97098a935c1dbbd15c4ded Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 5 Nov 2013 11:24:51 -0800 Subject: [PATCH] style cleanup --- libraries/voxels/src/VoxelTree.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/voxels/src/VoxelTree.cpp b/libraries/voxels/src/VoxelTree.cpp index ec86912a51..e5232718e6 100644 --- a/libraries/voxels/src/VoxelTree.cpp +++ b/libraries/voxels/src/VoxelTree.cpp @@ -586,8 +586,8 @@ void VoxelTree::processRemoveVoxelBitstream(unsigned char * bitstream, int buffe if (atByte + voxelDataSize <= bufferSizeBytes) { deleteVoxelCodeFromTree(voxelCode, COLLAPSE_EMPTY_TREE); - voxelCode+=voxelDataSize; - atByte+=voxelDataSize; + voxelCode += voxelDataSize; + atByte + =voxelDataSize; } else { printf("WARNING! Got remove voxel bitstream that would overflow buffer, bailing processing!\n"); break;