summaryrefslogtreecommitdiff
path: root/PACE
diff options
context:
space:
mode:
Diffstat (limited to 'PACE')
-rw-r--r--PACE/ChangeLog7
-rw-r--r--PACE/pace/win32/pthread.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index d6b1a1bd874..92156dda5d7 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,3 +1,10 @@
+Mon Apr 23 09:45:13 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * pace/win32/pthread.c (pthread_getschedparam):
+ Fixed syntax error, thanks to Cristian Ferretti
+ <cristian_ferretti@yahoo.com> for keeping track of the builds
+ and providing the patch.
+
Sun Apr 22 18:53:28 2001 Carlos O'Ryan <coryan@uci.edu>
* pace/win32/ctype.h:
diff --git a/PACE/pace/win32/pthread.c b/PACE/pace/win32/pthread.c
index a314c903e9c..b53dab9396c 100644
--- a/PACE/pace/win32/pthread.c
+++ b/PACE/pace/win32/pthread.c
@@ -81,7 +81,7 @@ pthread_getschedparam (pace_pthread_t thread,
int * policy,
pace_sched_param * param)
{
- PACE_UNUSED_ARG (policy)
+ PACE_UNUSED_ARG (policy);
if (param != (pace_sched_param*)0)
{
param->sched_priority = GetThreadPriority (thread);