Displaying 1 result from an estimated 1 matches for "ext3_errors_ro".
2001 Jun 30
0
Resend:[PATCH] cleanup of gcc-3.0 depreciated label in end of compound statement
...In function `journal_update_format':
> journal.c:1095: warning: deprecated use of label at end of compound statement
> --
> --- linux/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";
>...