[patch 3/4] misdn: indentation and braces disagree - add braces
From: akpm@linux-foundation.org
Date: 2009-01-09 20:23:34
From: Ilpo Järvinen <redacted> This is not buggy due to plain luck as there is only one entry currently in the element_attributes. Signed-off-by: Ilpo Järvinen <redacted> Cc: Karsten Keil <redacted> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- drivers/isdn/mISDN/dsp_pipeline.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/isdn/mISDN/dsp_pipeline.c~misdn-indentation-and-braces-disagree-add-braces drivers/isdn/mISDN/dsp_pipeline.c
--- a/drivers/isdn/mISDN/dsp_pipeline.c~misdn-indentation-and-braces-disagree-add-braces
+++ a/drivers/isdn/mISDN/dsp_pipeline.c@@ -99,7 +99,7 @@ int mISDN_dsp_element_register(struct mI goto err1; } - for (i = 0; i < ARRAY_SIZE(element_attributes); ++i) + for (i = 0; i < ARRAY_SIZE(element_attributes); ++i) { ret = device_create_file(&entry->dev, &element_attributes[i]); if (ret) {
@@ -107,6 +107,7 @@ int mISDN_dsp_element_register(struct mI __func__); goto err2; } + } list_add_tail(&entry->list, &dsp_elements);
_