Skip to content

Commit dcce535

Browse files
committed
Sprinkle a few const's into the action struct
1 parent 7b095b6 commit dcce535

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/rtmixer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ struct action
3333
{
3434
const enum actiontype type;
3535
bool allow_belated;
36-
PaTime requested_time;
36+
const PaTime requested_time;
3737
PaTime actual_time;
3838
struct action* next;
3939
union {
4040
float* const buffer;
4141
PaUtilRingBuffer* const ringbuffer;
42-
struct action* action; // Used in CANCEL
42+
struct action* const action; // Used in CANCEL
4343
};
4444
frame_t total_frames;
4545
frame_t done_frames;

0 commit comments

Comments
 (0)