Commit 5e47d67a authored by Art Haas's avatar Art Haas Committed by Christoph Hellwig

[PATCH] C99 initializers for drivers/block/genhd.c

parent 2985ad5c
......@@ -623,10 +623,10 @@ static int diskstats_show(struct seq_file *s, void *v)
}
struct seq_operations diskstats_op = {
start: diskstats_start,
next: diskstats_next,
stop: diskstats_stop,
show: diskstats_show
.start = diskstats_start,
.next = diskstats_next,
.stop = diskstats_stop,
.show = diskstats_show
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment