aboutsummaryrefslogtreecommitdiff
path: root/src/test_malloc.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2009-04-07 11:21:28 +0000
committerdanielk1977 <danielk1977@noemail.net>2009-04-07 11:21:28 +0000
commit64aca19127b925f72f1655950609d112185b1ac2 (patch)
treeb30919210c897b659602646dd224b6d622458d1f /src/test_malloc.c
parentc4d201c632ae0f5daae3a60918e3e43bd40d0088 (diff)
downloadsqlite-64aca19127b925f72f1655950609d112185b1ac2.tar.gz
sqlite-64aca19127b925f72f1655950609d112185b1ac2.zip
Change "... myfunction() { ... }" to "... myfunction(void) { ... }" in a few pla
ces. Ticket #3783. (CVS 6462) FossilOrigin-Name: 6f79e6ae0d30948db4ba26bb5b448c15c470464f
Diffstat (limited to 'src/test_malloc.c')
-rw-r--r--src/test_malloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test_malloc.c b/src/test_malloc.c
index 21ab1e8d6..78bb28128 100644
--- a/src/test_malloc.c
+++ b/src/test_malloc.c
@@ -13,7 +13,7 @@
** This file contains code used to implement test interfaces to the
** memory allocation subsystem.
**
-** $Id: test_malloc.c,v 1.53 2009/02/04 15:27:40 danielk1977 Exp $
+** $Id: test_malloc.c,v 1.54 2009/04/07 11:21:29 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include "tcl.h"
@@ -49,7 +49,7 @@ static void sqlite3Fault(void){
** Check to see if a fault should be simulated. Return true to simulate
** the fault. Return false if the fault should not be simulated.
*/
-static int faultsimStep(){
+static int faultsimStep(void){
if( likely(!memfault.enable) ){
return 0;
}
@@ -771,7 +771,7 @@ static void test_memdebug_callback(int nByte, int nFrame, void **aFrame){
}
#endif /* SQLITE_MEMDEBUG */
-static void test_memdebug_log_clear(){
+static void test_memdebug_log_clear(void){
Tcl_HashSearch search;
Tcl_HashEntry *pEntry;
for(