]> sigrok.org Git - libsigrok.git/commitdiff
input: Use SR_ERR_NA instead of SR_OK_CONTINUE.
authorBert Vermeulen <redacted>
Tue, 23 Sep 2014 10:04:35 +0000 (12:04 +0200)
committerBert Vermeulen <redacted>
Mon, 29 Sep 2014 23:49:58 +0000 (01:49 +0200)
src/input/csv.c
src/input/input.c

index e72357bb6d7f7983c02fd486af9c60467c8e3273..cc721baf2427a3e89c3c50d12bf196569dfafe59 100644 (file)
@@ -506,7 +506,7 @@ static int initial_parse(const struct sr_input *in, GString *buf)
        }
        if (!lines[l]) {
                /* Not enough data for a proper line yet. */
-               ret = SR_OK_CONTINUE;
+               ret = SR_ERR_NA;
                goto out;
        }
 
index 3547d9e1800888cbe62473920b8ba5f19343126d..4b0804a58b3efe77418f0f51b37a108b2cacd86c 100644 (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. */
                        continue;
                } else if (ret != SR_OK) {
-                       /* Can be SR_OK_CONTINUE. */
+                       /* Can be SR_ERR_NA. */
                        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. */
                        continue;
                } else if (ret != SR_OK) {
-                       /* Can be SR_OK_CONTINUE. */
+                       /* Can be SR_ERR_NA. */
                        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
  * guaranteed to return the moment it's ready. This gives the caller
  * the chance to examine the device instance, attach session callbacks
- * and on so.
+ * and so on.
  *
  * @since 0.4.0
  */