1
1

* util-alone.c: Use indented #error.

* vfs.h: Use indented #warning instead of hiding it from non-gcc
compilers.
Этот коммит содержится в:
Pavel Roskin 2001-06-14 15:26:29 +00:00
родитель ff84fd632e
Коммит 22a3755dc0
3 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,9 @@
2001-06-14 Pavel Roskin <proski@gnu.org>
* util-alone.c: Use indented #error.
* vfs.h: Use indented #warning instead of hiding it from non-gcc
compilers.
2001-06-11 Pavel Roskin <proski@gnu.org> 2001-06-11 Pavel Roskin <proski@gnu.org>
* cpio.c (vfs_cpiofs_ops): Use short name for the filesystem. * cpio.c (vfs_cpiofs_ops): Use short name for the filesystem.

Просмотреть файл

@ -49,7 +49,7 @@
#include "callback.h" #include "callback.h"
#ifndef VFS_STANDALONE #ifndef VFS_STANDALONE
#error This has only sense when compiling standalone version #error "This file should only be used in standalone VFS"
#endif #endif
int source_route = 0; int source_route = 0;

Просмотреть файл

@ -391,9 +391,7 @@ extern void mc_vfs_done( void );
listed above and O_APPEND */ listed above and O_APPEND */
#if (O_ALL & O_APPEND) #if (O_ALL & O_APPEND)
#ifdef __GNUC__ #warning "Unexpected problem with flags, O_LINEAR disabled, contact pavel@ucw.cz"
#warning Unexpected problem with flags, O_LINEAR disabled, contact pavel@ucw.cz
#endif
#define O_LINEAR 0 #define O_LINEAR 0
#define IS_LINEAR(a) 0 #define IS_LINEAR(a) 0
#define NO_LINEAR(a) a #define NO_LINEAR(a) a