diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-09-08 10:14:13 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-09-08 10:14:13 +0200 |
commit | d1b6923118b808f498bed8aa51b5d2562f07c0f4 (patch) | |
tree | 940e53816dd6bce99c9dfdf86385d5735b13e76a /libdde-linux26/contrib | |
parent | eecbb7e726e5e6c1978400cd6e48f3b4b9e861fb (diff) |
Revert "libdde-linux26: avoid compiler warning"
This reverts commit 0bdcc12f4cddc41868170c85c96680df4fffe433.
Diffstat (limited to 'libdde-linux26/contrib')
-rw-r--r-- | libdde-linux26/contrib/lib/kobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdde-linux26/contrib/lib/kobject.c b/libdde-linux26/contrib/lib/kobject.c index a1682ef4..0487d1f6 100644 --- a/libdde-linux26/contrib/lib/kobject.c +++ b/libdde-linux26/contrib/lib/kobject.c @@ -794,7 +794,7 @@ static struct kset *kset_create(const char *name, kset = kzalloc(sizeof(*kset), GFP_KERNEL); if (!kset) return NULL; - kobject_set_name(&kset->kobj, "%s", name); + kobject_set_name(&kset->kobj, name); kset->uevent_ops = uevent_ops; kset->kobj.parent = parent_kobj; |