Compiling against kernel version <2.6.25 was failing due to wrong parameters.
Signed-off-by: Antonio Quartulli ordex@autistici.org --- compat.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/compat.h b/compat.h index 6842a26..0f0e66e 100644 --- a/compat.h +++ b/compat.h @@ -131,7 +131,7 @@ static inline struct kobject *kobject_create_and_add(const char *name, if (!kobj) return NULL;
- kobject_set_name(kobj, name); + kobject_set_name(kobj, "%s", name); kobj->ktype = &ktype_bat_wrapper; kobj->kset = NULL; kobj->parent = parent;
b.a.t.m.a.n@lists.open-mesh.org