diff options
author | XANTRONIX Development | 2022-03-07 13:56:44 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-03-07 13:56:44 -0500 |
commit | d1b6367b9087a85e6f49ec3c619d41f62704b8da (patch) | |
tree | 77ee0a6e675b2d07f7cbcb6be74429df6be2cc2c /src | |
parent | 563b5ba828d40c0c791e056504a53aa86ea359e1 (diff) | |
download | xas-d1b6367b9087a85e6f49ec3c619d41f62704b8da.tar.gz xas-d1b6367b9087a85e6f49ec3c619d41f62704b8da.tar.bz2 xas-d1b6367b9087a85e6f49ec3c619d41f62704b8da.zip |
Fix incorrect sequence event type
Diffstat (limited to 'src')
-rw-r--r-- | src/seq.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -274,7 +274,7 @@ int xas_seq_add_set_synth_type(xas_seq *seq, goto error_malloc_ev; } - ev->type = XAS_SEQ_EVENT_SET_FREQUENCY; + ev->type = XAS_SEQ_EVENT_SET_SYNTH_TYPE; ev->objtype = XAS_SEQ_OBJECT_SYNTH; ev->object = object; ev->timestamp = timestamp; |