X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=pcomplib.c;h=845f6ac1263097de977138b8151af62c941a6b9f;hb=f73dda092b33638d2d5e9c35375f687a607b5403;hp=d531cf578241efd87d1d928d19283cd5e5e8909d;hpb=28ef6c316f1aff914bb95ac09787a3c83c1815fd;p=platform%2Fupstream%2Fbash.git diff --git a/pcomplib.c b/pcomplib.c index d531cf5..845f6ac 100644 --- a/pcomplib.c +++ b/pcomplib.c @@ -41,6 +41,8 @@ HASH_TABLE *prog_completes = (HASH_TABLE *)NULL; +static void free_progcomp __P((PTR_T)); + static int progcomp_initialized = 0; COMPSPEC * @@ -127,7 +129,7 @@ num_progcomps () static void free_progcomp (data) - char *data; + PTR_T data; { COMPSPEC *cs; @@ -195,7 +197,7 @@ find_compspec (cmd) if (prog_completes == 0) return ((COMPSPEC *)NULL); - item = find_hash_item ((char *)cmd, prog_completes); /* XXX fix const later */ + item = find_hash_item (cmd, prog_completes); if (item == NULL) return ((COMPSPEC *)NULL); @@ -207,7 +209,7 @@ find_compspec (cmd) void print_all_compspecs (pfunc) - VFunction *pfunc; + sh_csprint_func_t *pfunc; { BUCKET_CONTENTS *item_list; int bucket;