Skip to content

Commit

Permalink
Replace 'unsigned' to 'unsighed char'
Browse files Browse the repository at this point in the history
  • Loading branch information
9rnsr committed May 9, 2014
1 parent 5d11326 commit 1ec07dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mtype.c
Expand Up @@ -1615,7 +1615,7 @@ char *Type::modToChars()
void* for the work param and a string representation of the attribute. */
int Type::modifiersApply(void *param, int (*fp)(void *, const char *))
{
static unsigned modsArr[] = { MODconst, MODimmutable, MODwild, MODshared };
static unsigned char modsArr[] = { MODconst, MODimmutable, MODwild, MODshared };

for (size_t idx = 0; idx < 4; ++idx)
{
Expand Down

0 comments on commit 1ec07dd

Please sign in to comment.