Skip to content

Commit

Permalink
Merged revisions 73873 via svnmerge from
Browse files Browse the repository at this point in the history
svn+ssh://[email protected]/python/trunk

........
  r73873 | amaury.forgeotdarc | 2009-07-07 08:49:41 +0200 (mar., 07 juil. 2009) | 2 lines

  python#6420: Fix a compilation warning in the nis module, for OpenBSD and FreeBSD.
........
  • Loading branch information
amauryfa committed Jul 7, 2009
1 parent b0d9ca9 commit 783f86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/nismodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ nis_mapname (char *map, int *pfix)
return map;
}

#ifdef __APPLE__
#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__FreeBSD__)
typedef int (*foreachfunc)(unsigned long, char *, int, char *, int, void *);
#else
typedef int (*foreachfunc)(int, char *, int, char *, int, char *);
Expand Down

0 comments on commit 783f86e

Please sign in to comment.