Skip to content

Commit

Permalink
FIXUP more decl
Browse files Browse the repository at this point in the history
  • Loading branch information
dfandrich committed Jun 11, 2024
1 parent 2ce8e4a commit 0884ee4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cbmarcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -2540,7 +2540,7 @@ int DirTAP(FILE *InFile, enum ArchiveTypes ArchiveType, struct ArcTotals *Totals
/******************************************************************************
* Array of functions to determine archive types
******************************************************************************/
bool (* const TestFunctions[])() = {
bool (* const TestFunctions[])(FILE *, const char *) = {
IsC64_ARC,
IsC64_10,
IsC64_13,
Expand Down Expand Up @@ -2585,7 +2585,8 @@ enum ArchiveTypes DetermineArchiveType(FILE *InFile, const char *FileName)
/******************************************************************************
* Array of functions to read archive directories
******************************************************************************/
bool (* const DirFunctions[])() = {
bool (* const DirFunctions[])(FILE *, enum ArchiveTypes, struct ArcTotals *,
DisplayStartFunc, DisplayEntryFunc) = {
/* C64_ARC */ DirARC,
/* C64_10 */ DirARC,
/* C64_13 */ DirARC,
Expand Down

0 comments on commit 0884ee4

Please sign in to comment.