• A
    Fix compiler warnings for ext_alloc.c. · f7748ed5
    Ashwin Agrawal 提交于
    After commit 1822c826 started seeing bunch of
    warnings like
    -------------------------------------------
    memaccounting.c:247:1: warning: no previous prototype for function 'MemoryAccounting_DeclareDone' [-Wmissing-prototypes]
    MemoryAccounting_DeclareDone()
    ^
    ../../../../src/include/utils/memaccounting.h:238:1: note: this declaration is not a prototype; add 'void' to make it a prototype for a zero-parameter function
    MemoryAccounting_DeclareDone();
    ^
                                 void
    memaccounting.c:263:1: warning: no previous prototype for function 'MemoryAccounting_RequestQuotaIncrease' [-Wmissing-prototypes]
    MemoryAccounting_RequestQuotaIncrease()
    ^
    ../../../../src/include/utils/memaccounting.h:241:1: note: this declaration is not a prototype; add 'void' to make it a prototype for a zero-parameter function
    MemoryAccounting_RequestQuotaIncrease();
    ^
                                          void
    2 warnings generated.
    ext_alloc.c:35:1: warning: no previous prototype for function 'Ext_OptimizerAlloc' [-Wmissing-prototypes]
    Ext_OptimizerAlloc(size_t size)
    ^
    ext_alloc.c:50:17: warning: unused variable 'account' [-Wunused-variable]
            MemoryAccount *account = MemoryAccounting_ConvertIdToAccount(ActiveMemoryAccountId);
                           ^
    ext_alloc.c:48:1: warning: no previous prototype for function 'Ext_OptimizerFree' [-Wmissing-prototypes]
    Ext_OptimizerFree(void *ptr)
    ^
    ext_alloc.c:59:1: warning: no previous prototype for function 'GetOptimizerOutstandingMemoryBalance' [-Wmissing-prototypes]
    GetOptimizerOutstandingMemoryBalance()
    ^
    -------------------------------------------
    f7748ed5
ext_alloc.h 642 字节