diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-04-23 20:16:01 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-04-23 20:16:01 +0200 |
commit | 7f65bbbc0d9cd14dab23c5159411cb0daa57d970 (patch) | |
tree | caddfe746186254684942a86ac5221817a359ee5 /drmtools.c | |
parent | 23e311b6f0f881f4030b075b02558a836b08230e (diff) | |
download | drminfo-7f65bbbc0d9cd14dab23c5159411cb0daa57d970.tar.gz |
fix warning
Diffstat (limited to 'drmtools.c')
-rw-r--r-- | drmtools.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -28,8 +28,7 @@ #if __BYTE_ORDER == __LITTLE_ENDIAN # define LE_BE(_le, _be) (_le) -#endif -#if __BYTE_ORDER == __BIG_ENDIAN +#elif __BYTE_ORDER == __BIG_ENDIAN # define LE_BE(_le, _be) (_be) #endif |