Skip to content

Commit

Permalink
fix missing arg bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Jan 5, 2016
1 parent b10663f commit d7c6ccd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/account.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ int webapp_accounts_init(void)
#if defined (WIN32) && defined (SLPLUGIN)
tmr_start(&tmr, 800, startup, NULL);
#else
startup();
startup(NULL);
#endif

webapp_account_current();
Expand Down
2 changes: 1 addition & 1 deletion webapp/webapp.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ static int module_init(void)
#if defined (WIN32) && defined (SLPLUGIN)
tmr_start(&tmr, 800, syscmd, NULL);
#else
syscmd();
syscmd(NULL);
#endif

out:
Expand Down

0 comments on commit d7c6ccd

Please sign in to comment.