Skip to content

Commit 313cfcb

Browse files
committed
ChiclePathQueue: Fix out type
1 parent 5324ccb commit 313cfcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/chafa/chicle-path-queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ pop_stream_path_token (ChiclePathQueue *path_queue)
228228
path_queue->current_path_token = NULL;
229229

230230
result = chafa_stream_reader_read_token (path_queue->current_reader,
231-
&path_queue->current_path_token,
231+
(gpointer *) &path_queue->current_path_token,
232232
PATH_TOKEN_LEN_MAX);
233233
if (result > 0 && !strcmp (path_queue->current_src->separator, "\n"))
234234
{

0 commit comments

Comments
 (0)