aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-09-30 10:21:25 +0200
committerMarc André Tanner <mat@brain-dump.org>2020-10-10 10:03:17 +0200
commit40013d270248cb9eb720bb498e5cfe2df84450ca (patch)
tree335d293f1bec54fb0d09db76c501f92efb9b15b1
parent68ac220b79d6db21df2fa78a562beff0db169dd1 (diff)
downloadvis-40013d270248cb9eb720bb498e5cfe2df84450ca.tar.gz
vis-40013d270248cb9eb720bb498e5cfe2df84450ca.tar.xz
text: mark text_stat argument as const
-rw-r--r--text.c2
-rw-r--r--text.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/text.c b/text.c
index 3296e1a..d156c8a 100644
--- a/text.c
+++ b/text.c
@@ -1218,7 +1218,7 @@ out:
return NULL;
}
-struct stat text_stat(Text *txt) {
+struct stat text_stat(const Text *txt) {
return txt->info;
}
diff --git a/text.h b/text.h
index 6935ac5..f66df86 100644
--- a/text.h
+++ b/text.h
@@ -130,7 +130,7 @@ size_t text_size(Text*);
* @endrst
* @return See ``stat(2)`` for details.
*/
-struct stat text_stat(Text*);
+struct stat text_stat(const Text*);
/** Query whether the text contains any unsaved modifications. */
bool text_modified(Text*);
/**