input: Use SR_ERR_NA instead of SR_OK_CONTINUE.

This commit is contained in:
Bert Vermeulen 2014-09-23 12:04:35 +02:00
parent d5cc282ff8
commit 60107497fe
2 changed files with 4 additions and 4 deletions

View File

@ -506,7 +506,7 @@ static int initial_parse(const struct sr_input *in, GString *buf)
} }
if (!lines[l]) { if (!lines[l]) {
/* Not enough data for a proper line yet. */ /* Not enough data for a proper line yet. */
ret = SR_OK_CONTINUE; ret = SR_ERR_NA;
goto out; goto out;
} }

View File

@ -364,7 +364,7 @@ SR_API int sr_input_scan_buffer(GString *buf, const struct sr_input **in)
/* Module didn't recognize this buffer. */ /* Module didn't recognize this buffer. */
continue; continue;
} else if (ret != SR_OK) { } else if (ret != SR_OK) {
/* Can be SR_OK_CONTINUE. */ /* Can be SR_ERR_NA. */
return ret; return ret;
} }
@ -477,7 +477,7 @@ SR_API int sr_input_scan_file(const char *filename, const struct sr_input **in)
/* Module didn't recognize this buffer. */ /* Module didn't recognize this buffer. */
continue; continue;
} else if (ret != SR_OK) { } else if (ret != SR_OK) {
/* Can be SR_OK_CONTINUE. */ /* Can be SR_ERR_NA. */
return ret; return ret;
} }
@ -519,7 +519,7 @@ SR_API struct sr_dev_inst *sr_input_dev_inst_get(const struct sr_input *in)
* the device instance associated with this input instance, this is * the device instance associated with this input instance, this is
* guaranteed to return the moment it's ready. This gives the caller * guaranteed to return the moment it's ready. This gives the caller
* the chance to examine the device instance, attach session callbacks * the chance to examine the device instance, attach session callbacks
* and on so. * and so on.
* *
* @since 0.4.0 * @since 0.4.0
*/ */