mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-01 00:54:24 +03:00
* unixcompat.h: Typo (show => shown).
This commit is contained in:
parent
5d55e9b92f
commit
7d1b02caad
@ -23,11 +23,11 @@
|
||||
# define major(devnum) (((devnum) >> 8) & 0xff)
|
||||
#endif
|
||||
#ifndef minor
|
||||
# warning minor() is undefined. Device numbers will not be show correctly.
|
||||
# warning minor() is undefined. Device numbers will not be shown correctly.
|
||||
# define minor(devnum) (((devnum) & 0xff)
|
||||
#endif
|
||||
#ifndef makedev
|
||||
# warning makedev() is undefined. Device numbers will not be show correctly.
|
||||
# warning makedev() is undefined. Device numbers will not be shown correctly.
|
||||
# define makedev(major,minor) ((((major) & 0xff) << 8) | ((minor) & 0xff))
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user