Skip to content
Snippets Groups Projects
Commit f3d71c6e authored by Zhang Han's avatar Zhang Han Committed by Markus Armbruster
Browse files

qobject: spaces required around that operators


Add spaces around operators.

Signed-off-by: default avatarZhang Han <zhanghan64@huawei.com>
Message-Id: <20201228071129.24563-4-zhanghan64@huawei.com>
Reviewed-by: default avatarMarkus Armbruster <armbru@redhat.com>
Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
parent be08fb18
No related branches found
No related tags found
No related merge requests found
......@@ -43,8 +43,8 @@ static unsigned int tdb_hash(const char *name)
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++)
value = (value + (((const unsigned char *)name)[i] << (i*5 % 24)));
for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++)
value = (value + (((const unsigned char *)name)[i] << (i * 5 % 24)));
return (1103515243 * value + 12345);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment