testsuite: Make function arguments const

This commit is contained in:
Benjamin Otte 2021-11-24 13:02:20 +01:00
parent 50e4ca8593
commit ce8faa2e90
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
char *
diff_with_file (const char *file1,
char *text,
const char *text,
gssize len,
GError **error)
{

View File

@ -1,7 +1,7 @@
#pragma once
char * diff_with_file (const char *file1,
char *text,
const char *text,
gssize len,
GError **error);