fs: fix binfmt_aout.c build error

Various builds (such as i386:allmodconfig) fail with

fs/binfmt_aout.c:133:2: error: expected identifier or '(' before 'return'
fs/binfmt_aout.c:134:1: error: expected identifier or '(' before '}' token

[ Oops. My bad, I had stupidly thought that "allmodconfig" covered this
on x86-64 too, but it obviously doesn't. Egg on my face. - Linus ]

Fixes: 5d22fc25d4fc ("mm: remove more IS_ERR_VALUE abuses")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Guenter Roeck and committed by Linus Torvalds d66492bc 7e0fb73c

Changed files
-1
fs
-1
fs/binfmt_aout.c
··· 129 129 end = PAGE_ALIGN(end); 130 130 if (end > start) 131 131 return vm_brk(start, end - start); 132 - } 133 132 return 0; 134 133 } 135 134