Skip to content

Commit

Permalink
Merge pull request #260 from HokkaidoLtd/master
Browse files Browse the repository at this point in the history
fix build
  • Loading branch information
NinjaLikesCheez authored Nov 15, 2024
2 parents 1b6e3ef + a5bb7f0 commit a28e018
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Clutch/MiniZip/ioapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,7 @@ static int ZCALLBACK ferror_file_func(voidpf opaque, voidpf stream) {
return ret;
}

void fill_fopen_filefunc(pzlib_filefunc_def) zlib_filefunc_def *pzlib_filefunc_def;
{
void fill_fopen_filefunc(zlib_filefunc_def *pzlib_filefunc_def) {
pzlib_filefunc_def->zopen_file = fopen_file_func;
pzlib_filefunc_def->zopendisk_file = fopendisk_file_func;
pzlib_filefunc_def->zread_file = fread_file_func;
Expand Down
2 changes: 1 addition & 1 deletion Clutch/MiniZip/zip.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ typedef struct {

/* Allocate a new data block */
local linkedlist_datablock_internal *allocate_new_datablock OF((void));
local linkedlist_datablock_internal *allocate_new_datablock() {
local linkedlist_datablock_internal *allocate_new_datablock(void) {
linkedlist_datablock_internal *ldi;

ldi = (linkedlist_datablock_internal *)ALLOC(sizeof(linkedlist_datablock_internal));
Expand Down
2 changes: 1 addition & 1 deletion Clutch/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NSInteger diff_ms(struct timeval t1, struct timeval t2) {
}

void listApps(void);
void listApps() {
void listApps(void) {
KJApplicationManager *_manager = [[KJApplicationManager alloc] init];

NSArray *installedApps = _manager.installedApps.allValues;
Expand Down

0 comments on commit a28e018

Please sign in to comment.