From: adilger Date: Thu, 17 May 2007 16:53:46 +0000 (+0000) Subject: Branch b1_6 X-Git-Tag: v1_8_0_110~1607 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=f9b8aca9be545e754ceb00b7f3e18fccb257d440;p=fs%2Flustre-release.git Branch b1_6 Quiet warning about use of uninitialized variable. --- diff --git a/lustre/include/liblustre.h b/lustre/include/liblustre.h index e801dc6..b7a7d59 100644 --- a/lustre/include/liblustre.h +++ b/lustre/include/liblustre.h @@ -615,7 +615,7 @@ static inline int capable(int cap) .sleepers = LIST_HEAD_INIT(HEAD.sleepers) \ } #define init_waitqueue_head(l) INIT_LIST_HEAD(&(l)->sleepers) -#define wake_up(l) do { int a; a++; } while (0) +#define wake_up(l) do { int a = 0; a++; } while (0) #define TASK_INTERRUPTIBLE 0 #define TASK_UNINTERRUPTIBLE 1 #define TASK_RUNNING 2