Message ID | 20201228071129.24563-3-zhanghan64@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix some style problems in qobject | expand |
diff --git a/qobject/qdict.c b/qobject/qdict.c index 1079bd3f6f..2c07b3c87f 100644 --- a/qobject/qdict.c +++ b/qobject/qdict.c @@ -38,8 +38,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++)
Transfer tabs to spaces. Signed-off-by: Zhang Han <zhanghan64@huawei.com> --- qobject/qdict.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)