From 77d702067d8bf61f96f2c4ef451a09651b27628b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1draig=20Brady?= Date: Tue, 3 Nov 2015 10:59:55 +0000 Subject: quotearg: constify get_quoting_style parameters * lib/quotearg.h (get_quoting_style): Mark parameter as const. * lib/quotearg.c (get_quoting_style): Likewise. --- lib/quotearg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/quotearg.h') diff --git a/lib/quotearg.h b/lib/quotearg.h index 2b7c93c915..edee3b5929 100644 --- a/lib/quotearg.h +++ b/lib/quotearg.h @@ -278,7 +278,7 @@ struct quoting_options; struct quoting_options *clone_quoting_options (struct quoting_options *o); /* Get the value of O's quoting style. If O is null, use the default. */ -enum quoting_style get_quoting_style (struct quoting_options *o); +enum quoting_style get_quoting_style (struct quoting_options const *o); /* In O (or in the default if O is null), set the value of the quoting style to S. */ -- cgit v1.2.1