Commit 4ed6b219c47e1dc341f50f485a9348005a087e40

Authored by Perry Werneck
1 parent 4a8a6e5e

Updating package

Fixing "sentinel" error
Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
rpm/pw3270.spec
... ... @@ -38,7 +38,7 @@ License: GPL-2.0
38 38 Group: System/X11/Terminals
39 39 Url: https://portal.softwarepublico.gov.br/social/pw3270/
40 40  
41   -Source: pw3270-%{version}.tar.bz2
  41 +Source: pw3270-%{version}.tar.xz
42 42  
43 43 BuildRoot: %{_tmppath}/%{name}-%{version}-build
44 44  
... ...
src/pw3270/common/config.c
... ... @@ -636,7 +636,7 @@ gchar * filename_from_va(const gchar *first_element, va_list args)
636 636  
637 637 trace("Can't find \"%s\"",suffix);
638 638  
639   - return g_build_filename(".",suffix);
  639 + return g_build_filename(".",suffix,NULL);
640 640 }
641 641  
642 642 #ifdef HAVE_WIN_REGISTRY
... ...