libffado/libffado-libconfig145.patch
Orcan Ogetbil 9648851c5f - Remove ENABLE_ALL
- Improve the libffado-dont-use-bundled-libs.patch
- Drop BR: expat-devel libavc1394-devel
- Move configuration file to the library package
- Minor enhancement in the .desktop file
- Add links to upstream tickets for patches
- Add -ffast-math to the compiler flags
- Add patch to compile against libconfig-1.4.5
Tue Jul 13 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> -
    2.0.1-2.20100706.svn1864
- Add ENABLE_ALL flag to support more devices
- Don't bundle tests
- Include some preliminary documentation for the tools until the manpages
    arrive
- Patch out bundled libraries. Also fixes some rpmlints
- Improve the instructions how to create the tarball
Wed Jul 07 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> -
    2.0.1-1.20100706.svn1864
- Update to trunk, post 2.0.1.
Sat Jun 05 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> -
    2.0.0-1.20100605.svn1845
- Update to trunk, post 2.0.0.
Mon May 18 2009 Jarod Wilson <jarod@redhat.com> - 2.0-0.4.rc2
- Update to 2.0.0-rc2
Thu Nov 06 2008 Jarod Wilson <jarod@redhat.com> - 2.0-0.3.beta7
- Update to beta7
- Put arch-dependent helper/test binaries in libexecdir instead of datadir
Sun Aug 10 2008 Jarod Wilson <jwilson@redhat.com> - 2.0-0.2.beta6
- Review clean-ups (#456353)
Tue Jul 22 2008 Jarod Wilson <jwilson@redhat.com> - 2.0-0.1.beta6
- Initial Fedora build of libffado
2010-07-18 21:09:40 +00:00

13 lines
617 B
Diff

--- libffado.old/src/libutil/Configuration.cpp 2010-06-19 14:31:27.000000000 -0400
+++ libffado/src/libutil/Configuration.cpp 2010-07-14 01:37:57.000000000 -0400
@@ -333,7 +333,8 @@ Configuration::getValueForDeviceSetting(
libconfig::Setting *s = getDeviceSetting( vendor_id, model_id );
if(s) {
try {
- return s->lookupValue(setting, ref);
+ long long int refverylong = ref;
+ return s->lookupValue(setting, refverylong);
} catch (...) {
debugOutput(DEBUG_LEVEL_VERBOSE, "Setting %s not found\n", setting.c_str());
return false;