Skip to content
Snippets Groups Projects
Commit f9b8aca9 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Branch b1_6

Quiet warning about use of uninitialized variable.
parent 911b8808
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment