1
1

* unixcompat.h: Added missing parenthesis to the minor() macro.

Этот коммит содержится в:
Roland Illig 2005-02-22 03:47:01 +00:00
родитель 54cccec688
Коммит da66509191
2 изменённых файлов: 5 добавлений и 1 удалений

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

@ -1,3 +1,7 @@
2005-02-22 Roland Illig <roland.illig@gmx.de>
* unixcompat.h: Added missing parenthesis to the minor() macro.
2005-02-12 Roland Illig <roland.illig@gmx.de>
* info.c (info_show_info): Casted st_mode to unsigned to avoid

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

@ -24,7 +24,7 @@
#endif
#ifndef minor
# warning minor() is undefined. Device numbers will not be shown correctly.
# define minor(devnum) (((devnum) & 0xff)
# define minor(devnum) (((devnum) & 0xff))
#endif
#ifndef makedev
# warning makedev() is undefined. Device numbers will not be shown correctly.