Skip to content

Commit 2568904

Browse files
committed
fixup! 3b77331
1 parent 4a7fb4a commit 2568904

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

include/libParamTypes.h

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
// SPDX-License-Identifier: ODbL-1.0
22

3-
PARAM_TYPE_32(unk) // Unknown, currently intended to be used internally. May be subject to change accessible to public usage.
4-
PARAM_TYPE_32(stk) // 32 bits
5-
PARAM_TYPE_32(eax) // 32 bits
6-
PARAM_TYPE_16_(ax) // 16 bits
7-
PARAM_TYPE__8_(ah) // 8 bits
8-
PARAM_TYPE__8_(al) // 8 bits
9-
PARAM_TYPE_32(ebx) // 32 bits
10-
PARAM_TYPE_16_(bx) // 16 bits
11-
PARAM_TYPE__8_(bh) // 8 bits
12-
PARAM_TYPE__8_(bl) // 8 bits
13-
PARAM_TYPE_32(ecx) // 32 bits
14-
PARAM_TYPE_16_(cx) // 16 bits
15-
PARAM_TYPE__8_(ch) // 8 bits
16-
PARAM_TYPE__8_(cl) // 8 bits
17-
PARAM_TYPE_32(edx) // 32 bits
18-
PARAM_TYPE_16_(dx) // 16 bits
19-
PARAM_TYPE__8_(dh) // 8 bits
20-
PARAM_TYPE__8_(dl) // 8 bits
21-
PARAM_TYPE_32(ebp) // 32 bits
22-
PARAM_TYPE_32(edi) // 32 bits
23-
PARAM_TYPE_32(esi) // 32 bits
3+
PARAM_TYPE_32(unk) // Unknown, currently intended to be used internally. May be subject to change accessible to public usage.
4+
PARAM_TYPE_32(stk) // 32 bits
5+
PARAM_TYPE_32(eax) // 32 bits
6+
PARAM_TYPE_16_(ax) // 16 bits
7+
PARAM_TYPE__8_(ah) // 8 bits
8+
PARAM_TYPE__8_(al) // 8 bits
9+
PARAM_TYPE_32(ebx) // 32 bits
10+
PARAM_TYPE_16_(bx) // 16 bits
11+
PARAM_TYPE__8_(bh) // 8 bits
12+
PARAM_TYPE__8_(bl) // 8 bits
13+
PARAM_TYPE_32(ecx) // 32 bits
14+
PARAM_TYPE_16_(cx) // 16 bits
15+
PARAM_TYPE__8_(ch) // 8 bits
16+
PARAM_TYPE__8_(cl) // 8 bits
17+
PARAM_TYPE_32(edx) // 32 bits
18+
PARAM_TYPE_16_(dx) // 16 bits
19+
PARAM_TYPE__8_(dh) // 8 bits
20+
PARAM_TYPE__8_(dl) // 8 bits
21+
PARAM_TYPE_32(ebp) // 32 bits
22+
PARAM_TYPE_32(edi) // 32 bits
23+
PARAM_TYPE_32(esi) // 32 bits

include/libXbSymbolDatabase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ typedef enum _XbSDSymbolType {
134134
} XbSDSymbolType;
135135

136136
typedef enum _XbSDBParamType {
137-
#define PARAM_TYPE_32(type) param_##type,
137+
#define PARAM_TYPE_32(type) param_##type,
138138
#define PARAM_TYPE_16_(type) param__##type,
139139
#define PARAM_TYPE__8_(type) param__##type,
140140
#include <libParamTypes.h>

src/lib/libXbSymbolDatabase.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ const char* XbSymbolDatabase_LibraryToString(uint32_t library_flag)
388388
}
389389

390390
const char* const param_type_str[] = {
391-
#define PARAM_TYPE_32(type) #type,
391+
#define PARAM_TYPE_32(type) #type,
392392
#define PARAM_TYPE_16_(type) #type,
393393
#define PARAM_TYPE__8_(type) #type,
394394
#include <libParamTypes.h>

0 commit comments

Comments
 (0)