aboutsummaryrefslogtreecommitdiffstats
path: root/example/printcap.c
diff options
context:
space:
mode:
authorzsugabubus <zsugabubus@users.noreply.github.com>2020-01-30 16:17:25 +0000
committerGitHub <noreply@github.com>2020-01-30 11:17:25 -0500
commit81ab7d8c8c3e9524d93a0459b72e6950347135ac (patch)
tree8c696aac67b2ba210765499e93e97fa703a3c27e /example/printcap.c
parent38c9cb43787bf83ca4e9c9af707e82165de99008 (diff)
downloadlibfuse-81ab7d8c8c3e9524d93a0459b72e6950347135ac.tar.gz
examples: mark ops variables constant (#496)
Diffstat (limited to 'example/printcap.c')
-rw-r--r--example/printcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/printcap.c b/example/printcap.c
index 904542f..6c2482d 100644
--- a/example/printcap.c
+++ b/example/printcap.c
@@ -85,7 +85,7 @@ static void pc_init(void *userdata,
}
-static struct fuse_lowlevel_ops pc_oper = {
+static const struct fuse_lowlevel_ops pc_oper = {
.init = pc_init,
};