From f205d0f9b6672f983a6f610cd8d19163980d8dc4 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 31 Aug 2012 18:22:03 +0300 Subject: [PATCH] atom: make type and name of the 'a' field clearer Signed-off-by: Ran Benita --- src/atom.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/atom.c b/src/atom.c index fde4d6d..a8dc7d2 100644 --- a/src/atom.c +++ b/src/atom.c @@ -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; }