[C] Fixed some compiler warnings
This commit is contained in:
parent
551ec6089b
commit
d4a6e59a97
@ -3,7 +3,7 @@
|
|||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
|
|
||||||
static FTABLE *create_basic_table()
|
static FTABLE *create_basic_table(void)
|
||||||
{
|
{
|
||||||
FTABLE *table = ft_create_table();
|
FTABLE *table = ft_create_table();
|
||||||
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_COPT_TEXT_ALIGN, FT_ALIGNED_CENTER);
|
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_COPT_TEXT_ALIGN, FT_ALIGNED_CENTER);
|
||||||
|
@ -364,7 +364,7 @@ fort_table_options_t g_table_options = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
fort_table_options_t *create_table_options()
|
fort_table_options_t *create_table_options(void)
|
||||||
{
|
{
|
||||||
fort_table_options_t *options = (fort_table_options_t *)F_CALLOC(sizeof(fort_table_options_t), 1);
|
fort_table_options_t *options = (fort_table_options_t *)F_CALLOC(sizeof(fort_table_options_t), 1);
|
||||||
if (options == NULL) {
|
if (options == NULL) {
|
||||||
|
@ -146,7 +146,7 @@ extern fort_table_options_t g_table_options;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
fort_table_options_t* create_table_options();
|
fort_table_options_t* create_table_options(void);
|
||||||
fort_table_options_t* copy_table_options(const fort_table_options_t *option);
|
fort_table_options_t* copy_table_options(const fort_table_options_t *option);
|
||||||
void destroy_table_options(fort_table_options_t* options);
|
void destroy_table_options(fort_table_options_t* options);
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ void test_free(void *ptr)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int create_simple_table_and_show()
|
static int create_simple_table_and_show(void)
|
||||||
{
|
{
|
||||||
FTABLE *table = NULL;
|
FTABLE *table = NULL;
|
||||||
int result = 0;
|
int result = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user