This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Silence warnings about asprintf return value.
tags/non-daw-v1.1.0
Jonathan Moore Liles
15 years ago
parent
078aa38aaf
commit
e8eae16fa1
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
nonlib/Log_Entry.H
+ 2
- 1
nonlib/Log_Entry.H
View File
@@ -53,7 +53,8 @@ public:
void add ( const char *name, type v ) \
{ \
grow(); \
asprintf( &_sa[ _i ], "%s " format, name, (exp) ); \
if ( -1 == asprintf( &_sa[ _i ], "%s " format, name, (exp) ) ) \
abort(); \
strtok( _sa[ _i++ ], " " ); \
} \
Write
Preview
Loading…
Cancel
Save