diff options
| author | Michael Biebl <biebl@debian.org> | 2022-01-13 22:30:39 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-01-13 22:30:39 +0100 |
| commit | 88c227d90a6b7b388c5c85d72802a0ca8f05ed5c (patch) | |
| tree | 71f32df6617802270e8a78574bd8e1637dc532f4 /src/libnm-glib-aux/nm-hash-utils.c | |
| parent | e74c568b07b50b97873fb4ee1d776dedefbd54d6 (diff) | |
New upstream version 1.34.0 upstream/1.34.0
Diffstat (limited to 'src/libnm-glib-aux/nm-hash-utils.c')
| -rw-r--r-- | src/libnm-glib-aux/nm-hash-utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libnm-glib-aux/nm-hash-utils.c b/src/libnm-glib-aux/nm-hash-utils.c index 10fc097c..a6949ebd 100644 --- a/src/libnm-glib-aux/nm-hash-utils.c +++ b/src/libnm-glib-aux/nm-hash-utils.c @@ -255,7 +255,7 @@ nm_ppdirect_equal(gconstpointer a, gconstpointer b) /*****************************************************************************/ guint -nm_gbytes_hash(gconstpointer p) +nm_g_bytes_hash(gconstpointer p) { GBytes * ptr = (GBytes *) p; gconstpointer arr; @@ -266,7 +266,7 @@ nm_gbytes_hash(gconstpointer p) } guint -nm_pgbytes_hash(gconstpointer p) +nm_pg_bytes_hash(gconstpointer p) { GBytes *const *ptr = p; gconstpointer arr; @@ -277,7 +277,7 @@ nm_pgbytes_hash(gconstpointer p) } gboolean -nm_pgbytes_equal(gconstpointer a, gconstpointer b) +nm_pg_bytes_equal(gconstpointer a, gconstpointer b) { GBytes *const *ptr_a = a; GBytes *const *ptr_b = b; |