Change left-over SIGROK_* to SR_*.

This commit is contained in:
Uwe Hermann 2011-04-26 17:27:34 +02:00
parent 4362438f1e
commit f38bdf5678
1 changed files with 3 additions and 3 deletions

View File

@ -194,7 +194,7 @@ struct sr_probe *sr_device_probe_find(struct sr_device *device, int probenum)
return found_probe; 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, void sr_device_probe_name(struct sr_device *device, int probenum,
const char *name) const char *name)
{ {
@ -209,7 +209,7 @@ void sr_device_probe_name(struct sr_device *device, int probenum,
p->name = g_strdup(name); 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) void sr_device_trigger_clear(struct sr_device *device)
{ {
struct sr_probe *p; 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, void sr_device_trigger_set(struct sr_device *device, int probenum,
const char *trigger) const char *trigger)
{ {