summaryrefslogtreecommitdiffstats
path: root/qobject
diff options
context:
space:
mode:
authorZhang Han2020-12-28 08:11:27 +0100
committerMarkus Armbruster2021-02-04 13:20:29 +0100
commitbe08fb1897145e5fc3d11e05c2896b259887d9aa (patch)
tree65a8bec55ff4f3e7e48f1fa1e81b6c3cee1e286a /qobject
parentqobject: open brace '{' following struct go on the same line (diff)
downloadqemu-be08fb1897145e5fc3d11e05c2896b259887d9aa.tar.gz
qemu-be08fb1897145e5fc3d11e05c2896b259887d9aa.tar.xz
qemu-be08fb1897145e5fc3d11e05c2896b259887d9aa.zip
qobject: code indent should never use tabs
Transfer tabs to spaces. Signed-off-by: Zhang Han <zhanghan64@huawei.com> Message-Id: <20201228071129.24563-3-zhanghan64@huawei.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
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 d84443391e..d4d016ad69 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++)