lilypond-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: barcheck failed at: 0/0


From: Neil Puttock
Subject: Re: barcheck failed at: 0/0
Date: Wed, 1 Oct 2008 00:23:44 +0100

Hi Dan,

2008/10/1 Dan Eble <address@hidden>:
> The "0/0" message occurs in 2.11.59, but not in 2.11.58.
> -- Dan

This looks like a string conversion failure following the update of
the rational code to 64 bit (implemented in 2.11.59).

Here's the code from flower/string_convert.cc (which was already present):

  84 string
  85 String_convert::i64_string (I64 i64, char const *fmt)
  86 {
  87   char buffer[STRING_BUFFER_LEN];
  88   snprintf (buffer, STRING_BUFFER_LEN,
  89             (fmt ? fmt : "%Ld"), i64); // assume radix 10
  90   return string (buffer);
  91 }

Regards,
Neil




reply via email to

[Prev in Thread] Current Thread [Next in Thread]