From: VMware, Inc <> Date: Mon, 26 Apr 2010 18:22:16 +0000 (-0700) Subject: lib/file: pretty up structures X-Git-Tag: 2010.04.25-253928~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7451a95e35a2ab34ebd1757446c8331b3f47c4b5;p=thirdparty%2Fopen-vm-tools.git lib/file: pretty up structures Silly alignment of variables... Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/lib/file/fileInt.h b/open-vm-tools/lib/file/fileInt.h index 79fca7462..aa865f69c 100644 --- a/open-vm-tools/lib/file/fileInt.h +++ b/open-vm-tools/lib/file/fileInt.h @@ -176,9 +176,9 @@ EXTERN int FileRemoveDirectory(ConstUnicode pathName); typedef struct active_lock { struct active_lock *next; - uint32 age; - Bool marked; - Unicode dirName; + uint32 age; + Bool marked; + Unicode dirName; } ActiveLock; typedef struct lock_values @@ -188,10 +188,10 @@ typedef struct lock_values char *payload; char *lockType; char *locationChecksum; - Unicode memberName; - unsigned int lamportNumber; - uint32 waitTime; - uint32 msecMaxWaitTime; + Unicode memberName; + unsigned int lamportNumber; + uint32 waitTime; + uint32 msecMaxWaitTime; ActiveLock *lockList; } LockValues;