Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/lib/libalpm/package.h
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2021-01-05 00:36:09 +0000
committerAllan McRae <allan@archlinux.org>2021-01-09 00:15:04 +1000
commit1d2dd9a128690cef754bc102605df4918a508848 (patch)
tree70c11423075035e0b7f62fdce9fcdf73e1ca8b4a /lib/libalpm/package.h
parentf8614d8c5be0f58db8e14092a387ff6ffbf209d7 (diff)
libalpm: const annotate struct pkg_operations
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/package.h')
-rw-r--r--lib/libalpm/package.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/package.h b/lib/libalpm/package.h
index c37bd11e..b134ad5a 100644
--- a/lib/libalpm/package.h
+++ b/lib/libalpm/package.h
@@ -83,7 +83,7 @@ struct pkg_operations {
* The actual definition is in package.c so it can have access to the
* default accessor functions which are defined there.
*/
-extern struct pkg_operations default_pkg_ops;
+extern const struct pkg_operations default_pkg_ops;
struct __alpm_pkg_t {
unsigned long name_hash;
@@ -121,7 +121,7 @@ struct __alpm_pkg_t {
alpm_list_t *removes; /* in transaction targets only */
alpm_pkg_t *oldpkg; /* in transaction targets only */
- struct pkg_operations *ops;
+ const struct pkg_operations *ops;
alpm_filelist_t files;