]> sigrok.org Git - libsigrok.git/blobdiff - output/output_skeleton.c
Change SIGROK_ prefix to SR_.
[libsigrok.git] / output / output_skeleton.c
index 91ee9171e73c1a522b2c9995d6f57e36ba2c2254..669a29cdb41eafd43d71ee7210c52d9a91ea8e94 100644 (file)
@@ -28,13 +28,13 @@ static int init(struct output *o)
 static int data(struct output *o, char *data_in, uint64_t length_in,
                char **data_out, uint64_t *length_out)
 {
-       return SIGROK_OK;
+       return SR_OK;
 }
 
 static int event(struct output *o, int event_type, char **data_out,
                 uint64_t *length_out)
 {
-       return SIGROK_OK;
+       return SR_OK;
 }
 
 struct output_format output_foo = {