]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qobject/qdict.c
qobject: code indent should never use tabs
[mirror_qemu.git] / qobject / qdict.c
index d84443391eed5c1f0b2e5ddcb2e2369ecadca1e9..d4d016ad691b6de6d44e70cec9784f0d54126a66 100644 (file)
@@ -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++)