X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffile-handle.q;h=c4878bbb928b7b6447daaf95b7e474b6682b2b39;hb=7b98b3a4f58f6dc5a8e9cbc188b627966d5e652d;hp=c70945ee381f701cf9a2694cd9e0198289ea714a;hpb=55dee937e22a49d01794ef772076d9f9d84199e9;p=pspp diff --git a/src/file-handle.q b/src/file-handle.q index c70945ee38..c4878bbb92 100644 --- a/src/file-handle.q +++ b/src/file-handle.q @@ -286,7 +286,7 @@ fh_close_handle (struct file_handle *h) /* Hashes the name of file handle H. */ static unsigned -hash_file_handle (const void *handle_, void *param unused) +hash_file_handle (const void *handle_, void *param UNUSED) { const struct file_handle *handle = handle_; @@ -295,7 +295,7 @@ hash_file_handle (const void *handle_, void *param unused) /* Compares names of file handles A and B. */ static int -cmp_file_handle (const void *a_, const void *b_, void *foo unused) +cmp_file_handle (const void *a_, const void *b_, void *foo UNUSED) { const struct file_handle *a = a_; const struct file_handle *b = b_;