Commit cf154428 authored by David Reid's avatar David Reid

Fix a typo.

parent 7fd70cf5
...@@ -1558,7 +1558,7 @@ need to retrieve a job using `ma_resource_manager_next_job()` and then process i ...@@ -1558,7 +1558,7 @@ need to retrieve a job using `ma_resource_manager_next_job()` and then process i
ma_job job; ma_job job;
ma_result result = ma_resource_manager_next_job(pMyResourceManager, &job); ma_result result = ma_resource_manager_next_job(pMyResourceManager, &job);
if (result != MA_SUCCESS) { if (result != MA_SUCCESS) {
if (result == MA_NOT_DATA_AVAILABLE) { if (result == MA_NO_DATA_AVAILABLE) {
// No jobs are available. Keep going. Will only get this if the resource manager was initialized // No jobs are available. Keep going. Will only get this if the resource manager was initialized
// with MA_RESOURCE_MANAGER_FLAG_NON_BLOCKING. // with MA_RESOURCE_MANAGER_FLAG_NON_BLOCKING.
continue; continue;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment