X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fmodify-variables.c;h=f46dca7d73a6f1aba923e5ed3316de5eeeed0c43;hb=799e56c0e3a9911a860607e1c07caf2acf8cc9ef;hp=b47d93ff82ebdef2f9012f0eb149ded3177b2a31;hpb=244ade48f9c233532cc535d3233fdef53bf9266b;p=pspp diff --git a/src/language/dictionary/modify-variables.c b/src/language/dictionary/modify-variables.c index b47d93ff82..f46dca7d73 100644 --- a/src/language/dictionary/modify-variables.c +++ b/src/language/dictionary/modify-variables.c @@ -54,7 +54,7 @@ struct ordering static struct ordering forward_positional_ordering = {1, 1}; static int compare_variables_given_ordering (const void *, const void *, - void *ordering); + const void *ordering); /* Explains how to modify the variables in a dictionary. */ struct var_modification @@ -343,7 +343,7 @@ done: ORDERING, returning a strcmp()-type result. */ static int compare_variables_given_ordering (const void *a_, const void *b_, - void *ordering_) + const void *ordering_) { struct variable *const *pa = a_; struct variable *const *pb = b_; @@ -372,7 +372,7 @@ struct var_renaming var_renaming structures A and B. */ static int compare_var_renaming_by_new_name (const void *a_, const void *b_, - void *foo UNUSED) + const void *aux UNUSED) { const struct var_renaming *a = a_; const struct var_renaming *b = b_;