diff options
Diffstat (limited to 'runtime/transport/symbols.c')
-rw-r--r-- | runtime/transport/symbols.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/transport/symbols.c b/runtime/transport/symbols.c index e583103f..794e7391 100644 --- a/runtime/transport/symbols.c +++ b/runtime/transport/symbols.c @@ -348,7 +348,7 @@ static int _stp_do_module(const char __user *buf, int count) int i; if (count < sizeof(tmpmod)) { - printk("_stp_do_modules: expected %ld and got %d\n", sizeof(tmpmod), count); + printk("_stp_do_modules: expected %d and got %d\n", (int)sizeof(tmpmod), count); return -EFAULT; } if (copy_from_user ((char *)&tmpmod, buf, sizeof(tmpmod))) |