aboutsummaryrefslogtreecommitdiff
path: root/Documentation/pcmcia/crc32hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/pcmcia/crc32hash.c')
-rw-r--r--Documentation/pcmcia/crc32hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/pcmcia/crc32hash.c b/Documentation/pcmcia/crc32hash.c
index cbc36d299af..4210e5abab8 100644
--- a/Documentation/pcmcia/crc32hash.c
+++ b/Documentation/pcmcia/crc32hash.c
@@ -26,7 +26,7 @@ int main(int argc, char **argv) {
printf("no string passed as argument\n");
return -1;
}
- result = crc32(argv[1], strlen(argv[1]));
+ result = crc32((unsigned char const *)argv[1], strlen(argv[1]));
printf("0x%x\n", result);
return 0;
}