Skip to content
Snippets Groups Projects
Commit 96990d81 authored by alice's avatar alice
Browse files

community/gnome-online-miners: fix werror=format-security

parent 2cf17ece
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Maintainer: Rasmus Thomsen <oss@cogitri.dev> # Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=gnome-online-miners pkgname=gnome-online-miners
pkgver=3.34.0 pkgver=3.34.0
pkgrel=1 pkgrel=2
pkgdesc="A set of crawlers that go through your online content and index them locally" pkgdesc="A set of crawlers that go through your online content and index them locally"
url="https://wiki.gnome.org/Projects/GnomeOnlineMiners" url="https://wiki.gnome.org/Projects/GnomeOnlineMiners"
arch="all !s390x" # grilo arch="all !s390x" # grilo
...@@ -42,6 +42,8 @@ package() { ...@@ -42,6 +42,8 @@ package() {
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
} }
sha512sums="bfcdd7f11607663eda491314c34a9b50f2885f6fb39e7c9e68a77927bbcc326979fb8900ab5dfac1494ac575dbf0e3f3b7459ec3f38cb1eb8961158e3fe44464 gnome-online-miners-3.34.0.tar.xz sha512sums="
630701cfd204ed16f35f11819276e2ff4b8216bc58fbe289a4cc9e62b10adb9b97fce4d0363b7f49770b68943be20ce7b050915838fb7d297e6c04550bca2de8 tracker3.patch bfcdd7f11607663eda491314c34a9b50f2885f6fb39e7c9e68a77927bbcc326979fb8900ab5dfac1494ac575dbf0e3f3b7459ec3f38cb1eb8961158e3fe44464 gnome-online-miners-3.34.0.tar.xz
f98e6e4a990c95ad0a3ea43df4517f5d25ee12d56a757b47a84e2d78fbc723c433e77046b5706e1806972b6cd6beed5824a598b5d782c66de1bf749924b7b876 remove-configure-ac-debug.patch" ffd275107d0871344084c9175141a24c3fb6e8c7323b3bbfccd0cbba2079740a46e4931ecf274ab1aebe1916a960dd9d42a80bf5e330febe1ee43cbe438aa526 tracker3.patch
f98e6e4a990c95ad0a3ea43df4517f5d25ee12d56a757b47a84e2d78fbc723c433e77046b5706e1806972b6cd6beed5824a598b5d782c66de1bf749924b7b876 remove-configure-ac-debug.patch
"
...@@ -25,7 +25,7 @@ index fadd388..9e558f5 100644 ...@@ -25,7 +25,7 @@ index fadd388..9e558f5 100644
+ self->miner = g_initable_new (self->miner_type, NULL, &error, NULL); + self->miner = g_initable_new (self->miner_type, NULL, &error, NULL);
+ +
+ if (self->miner == NULL) { + if (self->miner == NULL) {
+ g_error (error->message); + g_error ("%s", error->message);
+ } + }
+ +
display_name = gom_miner_get_display_name (self->miner); display_name = gom_miner_get_display_name (self->miner);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment