The following commit has been merged in the master branch:
commit 25749e18a78f5bf57c058926aec11316657a4cd4
Author: andrei zavada <[email protected]>
Date:   Thu May 2 20:29:05 2013 +0000

    correct a 0 arg conv case in calls to CEDFFile:get_signal_*

diff --git a/ChangeLog b/ChangeLog
index b47e47e..816f262 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+v.0.9.0.1 (2013-05-02)
+       * Fix arg conversions in calls to CEDFFile::get_signal_*.
 v.0.9.0 (2013-05-01)
        * Parse patient_id field in EDF header and extract subject gender,
          DOB and id from it.
diff --git a/configure.ac b/configure.ac
index d4d5c4d..7a6d4f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 AC_COPYRIGHT([Copyright (c) 2008-13 Andrei Zavada <[email protected]>])
 
-AC_INIT([Aghermann], [0.9.0], [[email protected]])
+AC_INIT([Aghermann], [0.9.0.1], [[email protected]])
 AC_CONFIG_SRCDIR([src/main.cc])
 AC_CONFIG_MACRO_DIR([m4])
 AC_PREREQ(2.61)
diff --git a/data/mw-dialogs.glade b/data/mw-dialogs.glade
index 2dbee41..3323a80 100644
--- a/data/mw-dialogs.glade
+++ b/data/mw-dialogs.glade
@@ -424,7 +424,10 @@ With bug reports, either send yours to &lt;a 
href="mailto:aghermann-users@lists.
                             <property name="yalign">0</property>
                             <property name="xpad">10</property>
                             <property name="ypad">10</property>
-                            <property name="label">&lt;big&gt;&lt;b&gt;v. 
0.9.0&lt;/b&gt;&lt;/big&gt; (2013-04-27)
+                            <property name="label">&lt;big&gt;&lt;b&gt;v. 
0.9.0.1&lt;/b&gt;&lt;/big&gt; (2013-05-02)
+&lt;span font="monospace"&gt;
+       * Fix arg conversions in calls to CEDFFile::get_signal_*.
+&lt;big&gt;&lt;b&gt;v. 0.9.0&lt;/b&gt;&lt;/big&gt; (2013-05-01)
 &lt;span font="monospace"&gt;
        * Parse patient_id field in EDF header and extract subject gender,
          DOB and id from it.
diff --git a/debian/changelog b/debian/changelog
index 4e13fe8..7ac1dbf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-aghermann (0.9.0-1) experimental; urgency=low
+aghermann (0.9.0.1-1) unstable; urgency=low
 
   * New upstream version.
 
- -- Andrei Zavada <[email protected]>  Wed, 01 May 2013 02:57:16 +0200
+ -- Andrei Zavada <[email protected]>  Thu, 02 May 2013 21:09:16 +0200
 
 aghermann (0.8.1-1) experimental; urgency=low
 
diff --git a/src/libsigfile/source-base.hh b/src/libsigfile/source-base.hh
index d761b96..d1bdc2a 100644
--- a/src/libsigfile/source-base.hh
+++ b/src/libsigfile/source-base.hh
@@ -307,7 +307,7 @@ class CSource {
                {
                        return get_region_original(
                                h,
-                               0, recording_time() * samplerate(h));
+                               (float)0.0, recording_time() * samplerate(h));
                }
 
        // filtered
@@ -331,7 +331,7 @@ class CSource {
                {
                        return get_region_filtered(
                                h,
-                               0, recording_time() * samplerate(h));
+                               0.0f, recording_time() * samplerate(h));
                }
 
       // put samples

-- 
Sleep experiment manager

_______________________________________________
debian-med-commit mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit

Reply via email to