]> git.sur5r.net Git - u-boot/blobdiff - common/cmd_autoscript.c
Add GIT version information (commid ID) to untagged U-Boot versions
[u-boot] / common / cmd_autoscript.c
index 2d1f43143996a18596b8ce3b5433105f5d1f5755..e3253022dc92a08f8057af9d33472ff2ad1a0b92 100644 (file)
@@ -76,7 +76,7 @@ autoscript (ulong addr)
        hdr->ih_hcrc = 0;
        len = sizeof (image_header_t);
        data = (ulong)hdr;
-       if (crc32(0, (char *)data, len) != crc) {
+       if (crc32(0, (uchar *)data, len) != crc) {
                puts ("Bad header crc\n");
                return 1;
        }
@@ -85,7 +85,7 @@ autoscript (ulong addr)
        len = ntohl(hdr->ih_size);
 
        if (verify) {
-               if (crc32(0, (char *)data, len) != ntohl(hdr->ih_dcrc)) {
+               if (crc32(0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
                        puts ("Bad data crc\n");
                        return 1;
                }