]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - aft.c
Fix some signedness warnings.
[paraslash.git] / aft.c
diff --git a/aft.c b/aft.c
index aaeab8a39f22abd9e2855eb1d354939c46431111..c2c3274607abfb89631b76c407d7d4c02efb905c 100644 (file)
--- a/aft.c
+++ b/aft.c
@@ -724,7 +724,7 @@ static int print_list_item(struct ls_data *d, struct ls_options *opts,
                return 1;
        }
        if (opts->mode == LS_MODE_VERBOSE) {
-               HASH_TYPE asc_hash[2 * HASH_SIZE + 1];
+               char asc_hash[2 * HASH_SIZE + 1];
                char *att_line, *lyrics_line, *image_line;
 
                hash_to_asc(d->hash, asc_hash);
@@ -1265,7 +1265,7 @@ static int com_add_callback(const struct osl_object *query,
        char afsi_buf[AFSI_SIZE];
        uint32_t flags = read_u32(buf + AFTROW_FLAGS_OFFSET);
 
-       hash = buf + AFTROW_HASH_OFFSET;
+       hash = (HASH_TYPE *)buf + AFTROW_HASH_OFFSET;
        hash_to_asc(hash, asc);;
        objs[AFTCOL_HASH].data = buf + AFTROW_HASH_OFFSET;
        objs[AFTCOL_HASH].size = HASH_SIZE;