diff options
author | Simon Quigley <tsimonq2@ubuntu.com> | 2017-06-19 14:38:35 -0500 |
---|---|---|
committer | Simon Quigley <tsimonq2@ubuntu.com> | 2017-06-19 14:38:35 -0500 |
commit | 720f5023a8f68aaaa54cb6b7bf46efee23b5b4c3 (patch) | |
tree | 26a8d91183787418455f65c2bb44ed641800dad3 /hardinfo.c | |
parent | 854292407779593a401a1d5ce71add51880fa84f (diff) |
Import Upstream version 0.4.1
Diffstat (limited to 'hardinfo.c')
-rw-r--r-- | hardinfo.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -22,11 +22,19 @@ #include <iconcache.h> #include <stock.h> +#include <binreloc.h> + int main(int argc, char **argv) { - gtk_init(&argc, &argv); + GError *error; + gtk_init(&argc, &argv); + + if (!gbr_init(&error)) { + g_error("BinReloc cannot be initialized: %s", error->message); + } + icon_cache_init(); stock_icons_init(); shell_init(); |