1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

webservices: Make alloc_float_text() static.

This commit is contained in:
Francois Gouget 2017-08-17 09:20:42 +02:00 committed by Alexandre Julliard
parent d163ef089e
commit 5d377d8a5f
2 changed files with 1 additions and 2 deletions

View File

@ -914,7 +914,7 @@ WS_XML_UINT64_TEXT *alloc_uint64_text( UINT64 value )
return ret;
}
WS_XML_FLOAT_TEXT *alloc_float_text( float value )
static WS_XML_FLOAT_TEXT *alloc_float_text( float value )
{
WS_XML_FLOAT_TEXT *ret;

View File

@ -83,7 +83,6 @@ WS_XML_BOOL_TEXT *alloc_bool_text( BOOL );
WS_XML_INT32_TEXT *alloc_int32_text( INT32 );
WS_XML_INT64_TEXT *alloc_int64_text( INT64 );
WS_XML_UINT64_TEXT *alloc_uint64_text( UINT64 );
WS_XML_FLOAT_TEXT *alloc_float_text( float );
WS_XML_DOUBLE_TEXT *alloc_double_text( double );
WS_XML_GUID_TEXT *alloc_guid_text( const GUID * );
WS_XML_UNIQUE_ID_TEXT *alloc_unique_id_text( const GUID * );