issues
search
patrickfrey
/
strusBase
Implements some libraries with common functions and interfaces of the strus projects
Mozilla Public License 2.0
4
stars
1
forks
source link
fixed OSX gcc warnings
#7
Closed
andreasbaumann
closed
8 years ago
andreasbaumann
commented
8 years ago
fprintf( f, "a b c d" )
is dangerous, it should be
fprintf( f, "%s", "a b c d" )
linking warnings
fprintf( f, "a b c d" )
is dangerous, it should befprintf( f, "%s", "a b c d" )