diff options
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/insmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index 348feed8d..cef47ff45 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -2652,7 +2652,7 @@ static int new_is_module_checksummed(struct obj_file *f) | |||
2652 | { | 2652 | { |
2653 | const char *p = get_modinfo_value(f, "using_checksums"); | 2653 | const char *p = get_modinfo_value(f, "using_checksums"); |
2654 | if (p) | 2654 | if (p) |
2655 | return atoi(p); | 2655 | return xatoi(p); |
2656 | else | 2656 | else |
2657 | return 0; | 2657 | return 0; |
2658 | } | 2658 | } |