aboutsummaryrefslogtreecommitdiff
path: root/qobject
diff options
context:
space:
mode:
Diffstat (limited to 'qobject')
-rw-r--r--qobject/qdict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qobject/qdict.c b/qobject/qdict.c
index d844433..d4d016a 100644
--- a/qobject/qdict.c
+++ b/qobject/qdict.c
@@ -39,8 +39,8 @@ QDict *qdict_new(void)
*/
static unsigned int tdb_hash(const char *name)
{
- unsigned value; /* Used to compute the hash value. */
- unsigned i; /* Used to cycle through random values. */
+ unsigned value; /* Used to compute the hash value. */
+ unsigned i; /* Used to cycle through random values. */
/* Set the initial value from the key size. */
for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)