From d72b0a682ecad0a8d5793022733447e855a61798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Tue, 5 Jan 2021 23:42:55 +0100 Subject: Mark several non-modified pointer variables const --- RichString.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RichString.h') diff --git a/RichString.h b/RichString.h index 4145b0d0..594db23c 100644 --- a/RichString.h +++ b/RichString.h @@ -44,7 +44,7 @@ typedef struct RichString_ { void RichString_setAttrn(RichString* this, int attrs, int start, int charcount); -int RichString_findChar(RichString* this, char c, int start); +int RichString_findChar(const RichString* this, char c, int start); void RichString_prune(RichString* this); -- cgit v1.2.3