Commit a15e1e81 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

mscvpdb.h: Fix string types.

parent 97c3c417
...@@ -603,7 +603,7 @@ union codeview_fieldtype ...@@ -603,7 +603,7 @@ union codeview_fieldtype
cv_typ_t type; cv_typ_t type;
unsigned short int offset; /* numeric leaf */ unsigned short int offset; /* numeric leaf */
#if 0 #if 0
unsigned char name[1]; char name[1];
#endif #endif
} }
member_v3; member_v3;
...@@ -1986,7 +1986,7 @@ union codeview_symbol ...@@ -1986,7 +1986,7 @@ union codeview_symbol
{ {
unsigned short int len; unsigned short int len;
unsigned short int id; unsigned short int id;
unsigned char name[1]; char name[1];
} unamespace_v3; } unamespace_v3;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment