atom: make type and name of the 'a' field clearer

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2012-08-31 18:22:03 +03:00
parent 1aa6e2b1e2
commit f205d0f9b6
1 changed files with 4 additions and 4 deletions

View File

@ -74,7 +74,7 @@
struct atom_node {
struct atom_node *left, *right;
uint32_t a;
xkb_atom_t atom;
unsigned int fingerprint;
char *string;
};
@ -182,7 +182,7 @@ atom_intern(struct atom_table *table, const char *string,
else {
if (steal)
free(UNCONSTIFY(string));
return (*np)->a;
return (*np)->atom;
}
}
}
@ -205,8 +205,8 @@ atom_intern(struct atom_table *table, const char *string,
*np = nd;
nd->left = nd->right = NULL;
nd->fingerprint = fp;
nd->a = darray_size(table->table);
nd->atom = darray_size(table->table);
darray_append(table->table, nd);
return nd->a;
return nd->atom;
}