[Openais] [PATCH] openais: fix sleep time to be 10 msec

Ryan O'Hara rohara at redhat.com
Mon Apr 26 07:20:21 PDT 2010


The sleep time in openais-instantiate.c was incorrectly set to 10000
nsec. It should be 10000000 nsec (10 msec). This patch corrects this
value.

Ryan
-------------- next part --------------
Index: services/openais-instantiate.c
===================================================================
--- services/openais-instantiate.c	(revision 2124)
+++ services/openais-instantiate.c	(working copy)
@@ -43,7 +43,7 @@
 
 struct timespec sleeptime = {
 	.tv_sec = 0,
-	.tv_nsec = 10000 /* 10 msec */
+	.tv_nsec = 10000000 /* 10 msec */
 };
 
 #ifndef xprintf


More information about the Openais mailing list