Skip to content

Commit bea591b

Browse files
committed
happy linter
1 parent 7ec8b32 commit bea591b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

input/pipewire.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ unsigned int next_power_of_2(unsigned int n) {
136136
}
137137

138138
void *input_pipewire(void *audiodata) {
139-
struct pw_data *data = (struct pw_data*)malloc(sizeof(struct pw_data));
139+
struct pw_data *data = (struct pw_data *)malloc(sizeof(struct pw_data));
140140

141141
data->cava_audio = (struct audio_data *)audiodata;
142142
const struct spa_pod *params[1];
@@ -228,7 +228,7 @@ void *input_pipewire(void *audiodata) {
228228
}
229229

230230
data->stream = pw_stream_new_simple(pw_main_loop_get_loop(data->loop), "cava", props,
231-
&stream_events, data);
231+
&stream_events, data);
232232

233233
int status = pw_stream_connect(data->stream, PW_DIRECTION_INPUT, PW_ID_ANY,
234234
PW_STREAM_FLAG_AUTOCONNECT | PW_STREAM_FLAG_MAP_BUFFERS |

0 commit comments

Comments
 (0)