remove trailing tabulators

This commit is contained in:
Michał Trojnara
2022-03-06 17:41:36 +01:00
parent ac672640be
commit d8a182614c
2 changed files with 12 additions and 12 deletions

2
msi.h
View File

@ -81,7 +81,7 @@
#define PUT_UINT8_LE(i,p) \
((u_char*)(p))[0] = (i) & 0xff;
#define PUT_UINT16_LE(i,p) \
((u_char*)(p))[0] = (i) & 0xff; \
((u_char*)(p))[1] = ((i)>>8) & 0xff