mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-27 20:14:46 +08:00
4055ef7301
tune2fs.c (add_journal): Minor fixes from Andreas Dilger. Flush stdout after printing in-progress message. (main): Exit with status code 1 if we failed to determine the mount status of the device. ChangeLog, gcc-wall-cleanup: gcc-wall-cleanup: Remove additional annoying warning messages emited by gcc 2.95.2. ChangeLog, uuid.h: uuid: Change arguments to make it clear which argument is the source and which is the destination.
18 lines
436 B
Sed
18 lines
436 B
Sed
#!/bin/sed -f
|
|
#
|
|
# This script filters out gcc-wall crud that we're not interested in seeing.
|
|
#
|
|
/^cc /d
|
|
/^kcc /d
|
|
/^gcc /d
|
|
/does not support `long long'/d
|
|
/does not support the `ll' length modifier/d
|
|
/ANSI C forbids long long integer constants/d
|
|
/traditional C rejects string concatenation/d
|
|
/integer constant is unsigned in ANSI C, signed with -traditional/d
|
|
/At top level:/d
|
|
/In file included from/d
|
|
/In function `.*':/d
|
|
/^[ ]*from/d
|
|
|