sst1: fix argc arg of main()

This commit is contained in:
sezero
2018-08-20 20:16:20 +03:00
parent 4d29b7f47f
commit ee6f124929
2 changed files with 51 additions and 51 deletions

View File

@@ -28,7 +28,7 @@
/* This should be exported, but isn't yet */
#define SST1INIT_MAX_BOARDS 16
int main (int argc[], char* argv[])
int main (int argc, char* argv[])
{
FxU32* sst[SST1INIT_MAX_BOARDS];
int num_sst;

View File

@@ -28,7 +28,7 @@
/* This should be exported, but isn't yet */
#define SST1INIT_MAX_BOARDS 16
int main (int argc[], char* argv[])
int main (int argc, char* argv[])
{
FxU32* sst[SST1INIT_MAX_BOARDS];
int num_sst;