Skip to content

Commit

Permalink
Fixes for older gcc building
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Jun 30, 2023
1 parent 992cd35 commit f5de8fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/external/Creo/shim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/* Functions */
extern "C" int ProArrayAlloc(int,int,int,void**) {return 0;}
extern "C" int ProArrayFree(void**) {return 0;}
extern "C" int ProArrayObjectAdd(ProArray *, int, int, void*) {return 0;};
extern "C" int ProArrayObjectAdd(ProArray *, int, int, void*) {return 0;}
extern "C" int ProArraySizeGet(ProArray,int*) {return 0;}
extern "C" int ProAsmcompMdlGet(ProFeature*,void**) {return 0;}
extern "C" int ProAsmcompMdlMdlnameGet(ProFeature*,int*,wchar_t*) {return 0;}
Expand Down
2 changes: 1 addition & 1 deletion src/other/tkhtml/src/htmltcl.c
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ HtmlCallbackLayout (HtmlTree *pTree, HtmlNode *pNode)
}

static int
setSnapshotId (HtmlTree *pTree, HtmlNode *pNode, void *)
setSnapshotId (HtmlTree *pTree, HtmlNode *pNode, void *d)
{
pNode->iSnapshot = pTree->iLastSnapshotId;
return HTML_WALK_DESCEND;
Expand Down

0 comments on commit f5de8fe

Please sign in to comment.