defect 1049

Fix compile error in testlck and testmsg.  Use SA_AIS_OK.



git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@906 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
Mark Haverkamp 2006-01-25 19:16:31 +00:00
parent 2753438b4a
commit f8e1f79a41
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ int main (void) {
signal (SIGINT, sigintr_handler);
result = saLckInitialize (&handle, &callbacks, &version);
if (result != SA_OK) {
if (result != SA_AIS_OK) {
printf ("Could not initialize Lock Service API instance error %d\n", result);
exit (1);
}

View File

@ -107,7 +107,7 @@ int main (void) {
signal (SIGINT, sigintr_handler);
result = saMsgInitialize (&handle, &callbacks, &version);
if (result != SA_OK) {
if (result != SA_AIS_OK) {
printf ("Could not initialize Cluster Membership API instance error %d\n", result);
exit (1);
}