[build] fix Wmissing-prototypes

This commit is contained in:
Armin Novak 2023-08-01 08:12:57 +02:00 committed by akallabeth
parent 3bcf173e2b
commit 0cd36c1526
2 changed files with 3 additions and 2 deletions

View File

@ -528,7 +528,7 @@ static void clear_cdi_entries(CliprdrFileContext* file_context)
HashTable_Unlock(file_context->inode_table);
}
UINT prepare_clip_data_entry_with_id(CliprdrFileContext* file_context)
static UINT prepare_clip_data_entry_with_id(CliprdrFileContext* file_context)
{
CliprdrFuseClipDataEntry* clip_data_entry;
@ -556,7 +556,7 @@ UINT prepare_clip_data_entry_with_id(CliprdrFileContext* file_context)
return CHANNEL_RC_OK;
}
UINT prepare_clip_data_entry_without_id(CliprdrFileContext* file_context)
static UINT prepare_clip_data_entry_without_id(CliprdrFileContext* file_context)
{
WINPR_ASSERT(file_context);
WINPR_ASSERT(!file_context->clip_data_entry_without_id);

View File

@ -33,6 +33,7 @@
#include <freerdp/utils/ringbuffer.h>
#include <freerdp/utils/smartcardlogon.h>
#include "arm.h"
#include "wst.h"
#include "websocket.h"
#include "http.h"