Displaying 1 result from an estimated 1 matches for "ext3_errors_continu".
Did you mean:
ext3_errors_continue
2001 Jun 30
0
Resend:[PATCH] cleanup of gcc-3.0 depreciated label in end of compound statement
...ux/fs/ext3/super.c.orig Sat Jun 30 11:12:44 2001
> +++ linux/fs/ext3/super.c Sat Jun 30 11:13:33 2001
> @@ -112,6 +112,7 @@
> case EXT3_ERRORS_RO:
> return EXT3_ERRORS_RO;
> default:
> + break;
> }
> return EXT3_ERRORS_CONTINUE;
> }
> @@ -195,7 +196,8 @@
> else
> errstr = "Readonly filesystem";
> break;
> - default: ;
> + default:
> + break;
> }
>
> if (errstr) {
> @@ -1023,6 +...