]> sigrok.org Git - libsigrok.git/commitdiff
Change left-over SIGROK_* to SR_*.
authorUwe Hermann <redacted>
Tue, 26 Apr 2011 15:27:34 +0000 (17:27 +0200)
committerUwe Hermann <redacted>
Tue, 26 Apr 2011 21:57:16 +0000 (23:57 +0200)
device.c

index 0cc5e55256978230eb565aa879ad22b74d31ff2e..fc2635b59750c8bcfc52834e6c3c29321ab469d9 100644 (file)
--- a/device.c
+++ b/device.c
@@ -194,7 +194,7 @@ struct sr_probe *sr_device_probe_find(struct sr_device *device, int probenum)
        return found_probe;
 }
 
-/* TODO: return SIGROK_ERR if probenum not found */
+/* TODO: return SR_ERR if probenum not found */
 void sr_device_probe_name(struct sr_device *device, int probenum,
                          const char *name)
 {
@@ -209,7 +209,7 @@ void sr_device_probe_name(struct sr_device *device, int probenum,
        p->name = g_strdup(name);
 }
 
-/* TODO: return SIGROK_ERR if probenum not found */
+/* TODO: return SR_ERR if probenum not found */
 void sr_device_trigger_clear(struct sr_device *device)
 {
        struct sr_probe *p;
@@ -227,7 +227,7 @@ void sr_device_trigger_clear(struct sr_device *device)
        }
 }
 
-/* TODO: return SIGROK_ERR if probenum not found */
+/* TODO: return SR_ERR if probenum not found */
 void sr_device_trigger_set(struct sr_device *device, int probenum,
                           const char *trigger)
 {