From: Ben Pfaff <blp@cs.stanford.edu>
Date: Sat, 9 Oct 2004 23:10:28 +0000 (+0000)
Subject: Fix logic problem.
X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42e7e6f07b1a0fbd3d887419d37cf5d344bcc6f7;p=pintos-anon

Fix logic problem.
---

diff --git a/src/tests/threads/p1-3.c b/src/tests/threads/p1-3.c
index 264ad47..3b48836 100644
--- a/src/tests/threads/p1-3.c
+++ b/src/tests/threads/p1-3.c
@@ -79,7 +79,7 @@ test_donate_return (void)
   printf ("This thread should have priority %d.  Actual priority: %d.\n",
           PRI_DEFAULT + 2, thread_get_priority ());
   lock_release (&lock);
-  printf ("acquire1 and acquire2 must already have finished, in that order.\n"
+  printf ("acquire2 and acquire1 must already have finished, in that order.\n"
           "This should be the last line before finishing this test.\n"
           "Priority donation test done.\n");
 }