Skip to content

Commit 34a0a11

Browse files
committed
added struct
1 parent 95de93d commit 34a0a11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MemoryModule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ typedef int (WINAPI *ExeEntryProc)(void);
6363
// simple linked list to store memory blocks that span the 4GB boundary
6464
// (which can't be used as memory for memorymodule)
6565
typedef struct tagPOINTER_LIST{
66-
tagPOINTER_LIST* next;
66+
struct tagPOINTER_LIST* next;
6767
unsigned char *address;
6868
}POINTER_LIST;
6969
#endif

0 commit comments

Comments
 (0)