sr_rational: Make numerator signed.

This commit is contained in:
Martin Ling 2015-09-07 09:15:35 +01:00 committed by Uwe Hermann
parent 83c1dbd9b5
commit 18ea6b76fd
1 changed files with 1 additions and 1 deletions

View File

@ -465,7 +465,7 @@ struct sr_session;
struct sr_rational {
/** Numerator of the rational number. */
uint64_t p;
int64_t p;
/** Denominator of the rational number. */
uint64_t q;
};