Fix type of second parameter.
authorUlrich Drepper <drepper@redhat.com>
Mon, 28 Feb 2000 04:59:24 +0000 (04:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 28 Feb 2000 04:59:24 +0000 (04:59 +0000)
sysdeps/unix/sysv/irix4/getpriority.c
sysdeps/unix/sysv/irix4/setpriority.c

index 290573a..5203b42 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1994, 1996, 1997, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -29,7 +29,7 @@ extern int __sysmp __P ((int, ...));
 int
 getpriority (which, who)
      enum __priority_which which;
-     int who;
+     id_t who;
 {
   switch (which)
     {
index 5d6313a..8e2c8ec 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1994, 1996, 1997, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -23,7 +23,7 @@
 int
 setpriority (which, who, prio)
      enum __priority_which which;
-     int who;
+     id_t who;
      int prio;
 {
   switch (which)