From 570d85c842789e4e6e092667f0651806269fc558 Mon Sep 17 00:00:00 2001 From: crs Date: Thu, 2 May 2002 11:44:21 +0000 Subject: [PATCH] Indentation change. --- synergy/COutputPacketStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synergy/COutputPacketStream.cpp b/synergy/COutputPacketStream.cpp index 1895b782..e9ffc68f 100644 --- a/synergy/COutputPacketStream.cpp +++ b/synergy/COutputPacketStream.cpp @@ -29,7 +29,7 @@ UInt32 COutputPacketStream::write( length[1] = (UInt8)((count >> 16) & 0xff); length[2] = (UInt8)((count >> 8) & 0xff); length[3] = (UInt8)( count & 0xff); - UInt32 count2 = sizeof(length); + UInt32 count2 = sizeof(length); const UInt8* cbuffer = length; while (count2 > 0) { UInt32 n = getStream()->write(cbuffer, count2);