Simulated oneshot max_delay() method should not return a failure.

This commit is contained in:
Gregory Nutt
2016-08-15 11:43:55 -06:00
parent 3f48392974
commit b2be0be3a6
+1 -1
View File
@@ -174,7 +174,7 @@ static int sim_max_delay(FAR struct oneshot_lowerhalf_s *lower,
ts->tv_sec = INT_MAX;
ts->tv_nsec = LONG_MAX;
return -ENOSYS;
return OK;
}
/****************************************************************************