Csound Csound-dev Csound-tekno Search About

[Csnd] fprints issue: printing strings (%s) fails

Date2021-03-30 22:36
From"Jeanette C."
Subject[Csnd] fprints issue: printing strings (%s) fails
Hey hey,
I have problems printing an Svariable (string) to a file. Consider these 
instruments:

instr Print
   Sname chnget "MyString"
   Sfilename = strcat(Sname, ".txt")
   fprints(Sfilename,"%s", Sname)
   turnoff
endin

instr Caller
   Sname = "Output"
   chnset(Sname, "MyString")
   schedule("Print", 0, .1)
   turnoff
endin

Of course, in the real code the string Sname is generated dynamically. The 
output is only one control character (

Date2021-03-31 02:56
FromPete Goodeve
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
AttachmentsNone  

Date2021-03-31 06:24
From"Jeanette C."
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
Mar 31 2021, Pete Goodeve has written:
...
> OTOH, the "%s" in fprints is essentially superfluous here.  If I just use
> " fprints(Sfilename, Sname)" It works fine!
...
Hm, I could use strcat for a simple case then, but my real string format
would be:
fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity, iRobin)
For that the %s is definitely useful. Again, this could be worked around
using a prior sprintf, if that works.

Best wishes,

Jeanette

-- 
  * Website: http://juliencoder.de - for summer is a state of sound
  * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
  * Audiobombs: https://www.audiobombs.com/users/jeanette_c
  * GitHub: https://github.com/jeanette-c

Skip on the drinks Head to the floor
Makin' my way Past the show
My body's taken over And I want some more <3
(Britney Spears)

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-04-03 13:45
Fromandy fillebrown
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
Maybe related to the fprintks bug I reported earlier?
Victor might have fixed it already and it should be in the next release or if you build from source.



On Wed, Mar 31, 2021 at 1:24 AM Jeanette C. <julien@mail.upb.de> wrote:
Mar 31 2021, Pete Goodeve has written:
...
> OTOH, the "%s" in fprints is essentially superfluous here.  If I just use
> " fprints(Sfilename, Sname)" It works fine!
...
Hm, I could use strcat for a simple case then, but my real string format
would be:
fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity, iRobin)
For that the %s is definitely useful. Again, this could be worked around
using a prior sprintf, if that works.

Best wishes,

Jeanette

--
  * Website: http://juliencoder.de - for summer is a state of sound
  * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
  * Audiobombs: https://www.audiobombs.com/users/jeanette_c
  * GitHub: https://github.com/jeanette-c

Skip on the drinks Head to the floor
Makin' my way Past the show
My body's taken over And I want some more <3
(Britney Spears)

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2021-04-03 13:47
Fromandy fillebrown
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
Maybe related to the fprintks bug I reported earlier? See 



On Wed, Mar 31, 2021 at 1:24 AM Jeanette C. <julien@mail.upb.de> wrote:
Mar 31 2021, Pete Goodeve has written:
...
> OTOH, the "%s" in fprints is essentially superfluous here.  If I just use
> " fprints(Sfilename, Sname)" It works fine!
...
Hm, I could use strcat for a simple case then, but my real string format
would be:
fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity, iRobin)
For that the %s is definitely useful. Again, this could be worked around
using a prior sprintf, if that works.

Best wishes,

Jeanette

--
  * Website: http://juliencoder.de - for summer is a state of sound
  * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
  * Audiobombs: https://www.audiobombs.com/users/jeanette_c
  * GitHub: https://github.com/jeanette-c

Skip on the drinks Head to the floor
Makin' my way Past the show
My body's taken over And I want some more <3
(Britney Spears)

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2021-04-03 13:51
FromVictor Lazzarini
SubjectRe: [Csnd] [EXTERNAL] [Csnd] fprints issue: printing strings (%s) fails
No, that was fixed and working. There was another issue reported and deemed fixed, maybe that fix needs to be looked at.
========================
Prof. Victor Lazzarini
Maynooth University
Ireland

> On 3 Apr 2021, at 13:47, andy fillebrown  wrote:
> 
> WARNINGThis email originated from outside of Maynooth University's Mail System. Do not reply, click links or open attachments unless you recognise the sender and know the content is safe.
> Maybe related to the fprintks bug I reported earlier? See 
> https://github.com/csound/csound/issues/1377
> 
> 
> 
> On Wed, Mar 31, 2021 at 1:24 AM Jeanette C.  wrote:
> Mar 31 2021, Pete Goodeve has written:
> ...
> > OTOH, the "%s" in fprints is essentially superfluous here.  If I just use
> > " fprints(Sfilename, Sname)" It works fine!
> ...
> Hm, I could use strcat for a simple case then, but my real string format
> would be:
> fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity, iRobin)
> For that the %s is definitely useful. Again, this could be worked around
> using a prior sprintf, if that works.
> 
> Best wishes,
> 
> Jeanette
> 
> -- 
>   * Website: http://juliencoder.de - for summer is a state of sound
>   * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
>   * Audiobombs: https://www.audiobombs.com/users/jeanette_c
>   * GitHub: https://github.com/jeanette-c
> 
> Skip on the drinks Head to the floor
> Makin' my way Past the show
> My body's taken over And I want some more <3
> (Britney Spears)
> 
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
> Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-04-04 19:52
FromJohn ff
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
Do you have an example of what is not working as expected?  With an example I would have something to test but at the moment I am struggling to get a n angle on this.

⁣Sent from TypeApp ​

On Apr 3, 2021, 13:46, at 13:46, andy fillebrown  wrote:
>Maybe related to the fprintks bug I reported earlier?
>https://github.com/csound/csound/issues/1377
>
>Victor might have fixed it already and it should be in the next release
>or
>if you build from source.
>
>
>
>On Wed, Mar 31, 2021 at 1:24 AM Jeanette C.  wrote:
>
>> Mar 31 2021, Pete Goodeve has written:
>> ...
>> > OTOH, the "%s" in fprints is essentially superfluous here.  If I
>just use
>> > " fprints(Sfilename, Sname)" It works fine!
>> ...
>> Hm, I could use strcat for a simple case then, but my real string
>format
>> would be:
>> fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity,
>iRobin)
>> For that the %s is definitely useful. Again, this could be worked
>around
>> using a prior sprintf, if that works.
>>
>> Best wishes,
>>
>> Jeanette
>>
>> --
>>   * Website: http://juliencoder.de - for summer is a state of sound
>>   * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
>>   * Audiobombs: https://www.audiobombs.com/users/jeanette_c
>>   * GitHub: https://github.com/jeanette-c
>>
>> Skip on the drinks Head to the floor
>> Makin' my way Past the show
>> My body's taken over And I want some more <3
>> (Britney Spears)
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>         https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>>
>
>Csound mailing list
>Csound@listserv.heanet.ie
>https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>Send bugs reports to
>        https://github.com/csound/csound/issues
>Discussions of bugs and features can be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-04-04 20:28
From"Jeanette C."
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
Attachmentsfprints_bug.zip  
Apr 4 2021, John ff has written:

> Do you have an example of what is not working as expected?
I have attached a small zipfile, containing both a CSD and the output text on 
my system, using ArchLinux's version of Csound:
Csound version 6.15 (double samples) Sep  7 2020

If the zip is blocked by the list, let me know and I'll upload it somewhere.

Thanks and best wishes,

Jeanette

> With an example 
I would have something to test but at the moment I am struggling to get a n angle on this.
>
> ⁣Sent from TypeApp ​
>
> On Apr 3, 2021, 13:46, at 13:46, andy fillebrown  wrote:
>> Maybe related to the fprintks bug I reported earlier?
>> https://github.com/csound/csound/issues/1377
>>
>> Victor might have fixed it already and it should be in the next release
>> or
>> if you build from source.
>>
>>
>>
>> On Wed, Mar 31, 2021 at 1:24 AM Jeanette C.  wrote:
>>
>>> Mar 31 2021, Pete Goodeve has written:
>>> ...
>>>> OTOH, the "%s" in fprints is essentially superfluous here.  If I
>> just use
>>>> " fprints(Sfilename, Sname)" It works fine!
>>> ...
>>> Hm, I could use strcat for a simple case then, but my real string
>> format
>>> would be:
>>> fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity,
>> iRobin)
>>> For that the %s is definitely useful. Again, this could be worked
>> around
>>> using a prior sprintf, if that works.
>>>
>>> Best wishes,
>>>
>>> Jeanette
>>>
>>> --
>>>   * Website: http://juliencoder.de - for summer is a state of sound
>>>   * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
>>>   * Audiobombs: https://www.audiobombs.com/users/jeanette_c
>>>   * GitHub: https://github.com/jeanette-c
>>>
>>> Skip on the drinks Head to the floor
>>> Makin' my way Past the show
>>> My body's taken over And I want some more <3
>>> (Britney Spears)
>>>
>>> Csound mailing list
>>> Csound@listserv.heanet.ie
>>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>>> Send bugs reports to
>>>         https://github.com/csound/csound/issues
>>> Discussions of bugs and features can be posted here
>>>
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>        https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
>        https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
>

-- 
  * Website: http://juliencoder.de - for summer is a state of sound
  * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
  * Audiobombs: https://www.audiobombs.com/users/jeanette_c
  * GitHub: https://github.com/jeanette-c

When you need someone, you just turn around and I will be there <3
(Britney Spears)

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-04-04 21:31
Fromjohn
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
As far as I can tell your examle runs correctly.  Output is
~/csound6> more fprints_bug.txt
Hello world.
~/csound6> od -cx fprints_bug.txt
0000000   H   e   l   l   o       w   o   r   l   d   .
            6548    6c6c    206f    6f77    6c72    2e64
0000014

This is with latest gitub code (with some unllated exeriments in action).
OTOH I a not aware of any change here, but whatever it was seems fixed

--Csound version 6.15 beta (double samples) Mar 28 2021
[commit: 1ee0bda4d893ac292946b59ca5a210ef7929c046]

Perhaps it is time for a release?

==John ff



On Sun, 4 Apr 2021, Jeanette C. wrote:

> Apr 4 2021, John ff has written:
>
>> Do you have an example of what is not working as expected?
> I have attached a small zipfile, containing both a CSD and the output text on 
> my system, using ArchLinux's version of Csound:
> Csound version 6.15 (double samples) Sep  7 2020
>
> If the zip is blocked by the list, let me know and I'll upload it somewhere.
>
> Thanks and best wishes,
>
> Jeanette
>
>> With an example 
> I would have something to test but at the moment I am struggling to get a n 
> angle on this.
>> 
>> ⁣Sent from TypeApp 
>> On Apr 3, 2021, 13:46, at 13:46, andy fillebrown 
>>  wrote:
>>> Maybe related to the fprintks bug I reported earlier?
>>> https://github.com/csound/csound/issues/1377
>>> 
>>> Victor might have fixed it already and it should be in the next release
>>> or
>>> if you build from source.
>>> 
>>> 
>>> 
>>> On Wed, Mar 31, 2021 at 1:24 AM Jeanette C.  wrote:
>>> 
>>>> Mar 31 2021, Pete Goodeve has written:
>>>> ...
>>>>> OTOH, the "%s" in fprints is essentially superfluous here.  If I
>>> just use
>>>>> " fprints(Sfilename, Sname)" It works fine!
>>>> ...
>>>> Hm, I could use strcat for a simple case then, but my real string
>>> format
>>>> would be:
>>>> fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity,
>>> iRobin)
>>>> For that the %s is definitely useful. Again, this could be worked
>>> around
>>>> using a prior sprintf, if that works.
>>>> 
>>>> Best wishes,
>>>> 
>>>> Jeanette
>>>> 
>>>> --
>>>>   * Website: http://juliencoder.de - for summer is a state of sound
>>>>   * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
>>>>   * Audiobombs: https://www.audiobombs.com/users/jeanette_c
>>>>   * GitHub: https://github.com/jeanette-c
>>>> 
>>>> Skip on the drinks Head to the floor
>>>> Makin' my way Past the show
>>>> My body's taken over And I want some more <3
>>>> (Britney Spears)
>>>> 
>>>> Csound mailing list
>>>> Csound@listserv.heanet.ie
>>>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>>>> Send bugs reports to
>>>>         https://github.com/csound/csound/issues
>>>> Discussions of bugs and features can be posted here
>>>> 
>>> 
>>> Csound mailing list
>>> Csound@listserv.heanet.ie
>>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>>> Send bugs reports to
>>>        https://github.com/csound/csound/issues
>>> Discussions of bugs and features can be posted here
>> 
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>        https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>> 
>
> -- 
> * Website: http://juliencoder.de - for summer is a state of sound
> * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
> * Audiobombs: https://www.audiobombs.com/users/jeanette_c
> * GitHub: https://github.com/jeanette-c
>
> When you need someone, you just turn around and I will be there <3
> (Britney Spears)
>
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
>       https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-04-04 21:39
From"Jeanette C."
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
Apr 4 2021, john has written:
...
> This is with latest gitub code (with some unllated exeriments in action).
> OTOH I a not aware of any change here, but whatever it was seems fixed
...
Thank you for the verification, so I'll just have to compile from source
or wait till the changes get downstream to our packages. I can work
with that. :)

Best wishes,

Jeanette

-- 
  * Website: http://juliencoder.de - for summer is a state of sound
  * Youtube: https://www.youtube.com/channel/UCMS4rfGrTwz8W7jhC1Jnv7g
  * Audiobombs: https://www.audiobombs.com/users/jeanette_c
  * GitHub: https://github.com/jeanette-c

When you need someone, you just turn around and I will be there <3
(Britney Spears)

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-04-04 22:45
FromVictor Lazzarini
SubjectRe: [Csnd] [EXTERNAL] Re: [Csnd] fprints issue: printing strings (%s) fails
I've got a few adjustments to do to the new filters, and update the manual. 

Also, I'd like to see if we could wait for the Web Audio work to be completed before the release.

Prof. Victor Lazzarini
Maynooth University
Ireland

> On Apr 4, 2021, at 9:32 PM, john  wrote:
> 
> *Warning*
> 
> This email originated from outside of Maynooth University's Mail System. Do not reply, click links or open attachments unless you recognise the sender and know the content is safe.
> 
> As far as I can tell your examle runs correctly.  Output is
> ~/csound6> more fprints_bug.txt
> Hello world.
> ~/csound6> od -cx fprints_bug.txt
> 0000000   H   e   l   l   o       w   o   r   l   d   .
>           6548    6c6c    206f    6f77    6c72    2e64
> 0000014
> 
> This is with latest gitub code (with some unllated exeriments in action).
> OTOH I a not aware of any change here, but whatever it was seems fixed
> 
> --Csound version 6.15 beta (double samples) Mar 28 2021
> [commit: 1ee0bda4d893ac292946b59ca5a210ef7929c046]
> 
> Perhaps it is time for a release?
> 
> ==John ff
> 
> 
> 
>> On Sun, 4 Apr 2021, Jeanette C. wrote:
>> 
>> Apr 4 2021, John ff has written:
>> 
>>> Do you have an example of what is not working as expected?
>> I have attached a small zipfile, containing both a CSD and the output text on
>> my system, using ArchLinux's version of Csound:
>> Csound version 6.15 (double samples) Sep  7 2020
>> 
>> If the zip is blocked by the list, let me know and I'll upload it somewhere.
>> 
>> Thanks and best wishes,
>> 
>> Jeanette
>> 
>>> With an example
>> I would have something to test but at the moment I am struggling to get a n
>> angle on this.
>>> 
>>> ⁣Sent from TypeApp
>>> On Apr 3, 2021, 13:46, at 13:46, andy fillebrown
>>>  wrote:
>>>> Maybe related to the fprintks bug I reported earlier?
>>>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues%2F1377&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295134233%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=0uDfh7n6HL2x2g%2BSbNnXbVwiPmYUI8wE5JybBspuwz4%3D&reserved=0
>>>> 
>>>> Victor might have fixed it already and it should be in the next release
>>>> or
>>>> if you build from source.
>>>> 
>>>> 
>>>> 
>>>> On Wed, Mar 31, 2021 at 1:24 AM Jeanette C.  wrote:
>>>> 
>>>>> Mar 31 2021, Pete Goodeve has written:
>>>>> ...
>>>>>> OTOH, the "%s" in fprints is essentially superfluous here.  If I
>>>> just use
>>>>>> " fprints(Sfilename, Sname)" It works fine!
>>>>> ...
>>>>> Hm, I could use strcat for a simple case then, but my real string
>>>> format
>>>>> would be:
>>>>> fprints(Sfilename, "path/%s-%d-%d-%d.wav", Sname, iNote, iVelocity,
>>>> iRobin)
>>>>> For that the %s is definitely useful. Again, this could be worked
>>>> around
>>>>> using a prior sprintf, if that works.
>>>>> 
>>>>> Best wishes,
>>>>> 
>>>>> Jeanette
>>>>> 
>>>>> --
>>>>>  * Website: https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fjuliencoder.de%2F&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295134233%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=bAVy06ENFbL%2BR61I7kpaU2Jc2D1cy2wb8HAu0c481JI%3D&reserved=0 - for summer is a state of sound
>>>>>  * Youtube: https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUCMS4rfGrTwz8W7jhC1Jnv7g&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=QVOppGqxylDNX%2BTB52pO4moyRIb4dEqD5nzm6FgiWro%3D&reserved=0
>>>>>  * Audiobombs: https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.audiobombs.com%2Fusers%2Fjeanette_c&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=Nr3zCyTu7WJDFPoVa39Vx3qidPWW64fKgRTJKWtxtQw%3D&reserved=0
>>>>>  * GitHub: https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fjeanette-c&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=3ri7%2BKdmSuZc7OcrVhYh2Whb2%2BJdGvSfAX4BT3s2iSc%3D&reserved=0
>>>>> 
>>>>> Skip on the drinks Head to the floor
>>>>> Makin' my way Past the show
>>>>> My body's taken over And I want some more <3
>>>>> (Britney Spears)
>>>>> 
>>>>> Csound mailing list
>>>>> Csound@listserv.heanet.ie
>>>>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=ftgFbMi0VAtsyk%2F%2BENF5YdqPd0wPNvFmKaPWvvbK5pE%3D&reserved=0
>>>>> Send bugs reports to
>>>>>        https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=cQmL5QR0Hk3JiJDjfBXsxqx%2FZjHuuW5jGnJhggD%2B6as%3D&reserved=0
>>>>> Discussions of bugs and features can be posted here
>>>>> 
>>>> 
>>>> Csound mailing list
>>>> Csound@listserv.heanet.ie
>>>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=ftgFbMi0VAtsyk%2F%2BENF5YdqPd0wPNvFmKaPWvvbK5pE%3D&reserved=0
>>>> Send bugs reports to
>>>>       https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=cQmL5QR0Hk3JiJDjfBXsxqx%2FZjHuuW5jGnJhggD%2B6as%3D&reserved=0
>>>> Discussions of bugs and features can be posted here
>>> 
>>> Csound mailing list
>>> Csound@listserv.heanet.ie
>>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=ftgFbMi0VAtsyk%2F%2BENF5YdqPd0wPNvFmKaPWvvbK5pE%3D&reserved=0
>>> Send bugs reports to
>>>       https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=cQmL5QR0Hk3JiJDjfBXsxqx%2FZjHuuW5jGnJhggD%2B6as%3D&reserved=0
>>> Discussions of bugs and features can be posted here
>>> 
>> 
>> --
>> * Website: https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fjuliencoder.de%2F&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=Gs4jbvv5IESfkbw2tLwFusm5IWP6rO9%2FGFjdbnAjh9M%3D&reserved=0 - for summer is a state of sound
>> * Youtube: https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fchannel%2FUCMS4rfGrTwz8W7jhC1Jnv7g&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=QVOppGqxylDNX%2BTB52pO4moyRIb4dEqD5nzm6FgiWro%3D&reserved=0
>> * Audiobombs: https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.audiobombs.com%2Fusers%2Fjeanette_c&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295144222%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=Nr3zCyTu7WJDFPoVa39Vx3qidPWW64fKgRTJKWtxtQw%3D&reserved=0
>> * GitHub: https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fjeanette-c&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295154218%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=CxK1XTFH44CDoyYiJZwD7ej5Y9h5Yq3PZnAVRR9Ujtw%3D&reserved=0
>> 
>> When you need someone, you just turn around and I will be there <3
>> (Britney Spears)
>> 
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295154218%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=1bd1rgblemD5YIhATj%2BtaKyZGXEx%2FxZ07tlKVqJEDa4%3D&reserved=0
>> Send bugs reports to
>>      https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295154218%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=QD6tGjZ0FpZOtm3qM0PB5TBax62Zt1tv3J%2BHbv0vho0%3D&reserved=0
>> Discussions of bugs and features can be posted here
> 
> Csound mailing list
> Csound@listserv.heanet.ie
> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295154218%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=1bd1rgblemD5YIhATj%2BtaKyZGXEx%2FxZ07tlKVqJEDa4%3D&reserved=0
> Send bugs reports to
>       https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=04%7C01%7CVictor.Lazzarini%40mu.ie%7C4b086610f10f477f2c4808d8f7a8b7aa%7C1454f5ccbb354685bbd98621fd8055c9%7C1%7C0%7C637531651295154218%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=QD6tGjZ0FpZOtm3qM0PB5TBax62Zt1tv3J%2BHbv0vho0%3D&reserved=0
> Discussions of bugs and features can be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2021-04-05 02:37
FromPete Goodeve
SubjectRe: [Csnd] fprints issue: printing strings (%s) fails
AttachmentsNone