Skip to content

Commit

Permalink
fix compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Jan 12, 2025
1 parent 9e5c53f commit 769dbca
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions hdf5.pd
Original file line number Diff line number Diff line change
Expand Up @@ -1616,19 +1616,13 @@ pp_addhdr(<<'EOXS');
# This originally generated using h2xs and manually editing
#
*/
static int
not_here(s)
char *s;
static int not_here(char *s)
{
croak("%s not implemented on this architecture", s);
return -1;
}

hid_t
constant(name, arg)
char *name;
int arg;
{
hid_t constant(char *name, int arg) {
errno = 0;
switch (*name) {
case 'A':
Expand Down

0 comments on commit 769dbca

Please sign in to comment.