1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-06 14:52:34 +02:00

fix Mac build

This commit is contained in:
Paul Licameli 2018-08-24 17:42:53 -04:00
parent 9012b98eca
commit c86a46dc99

View File

@ -3224,7 +3224,7 @@ void * nyq_reformat_aud_do_response(const wxString & Str) {
wxString Left = Str.BeforeLast('\n').BeforeLast('\n');
wxString Right = Str.BeforeLast('\n').AfterLast('\n');
message = cvstring(Left);
success = Right.EndsWith("OK") ? cvfixnum(1) : NIL;
success = Right.EndsWith("OK") ? cvfixnum(1) : nullptr;
dst = cons(message, success);
return (void *)dst;
}