Skip to content

Commit

Permalink
Fix error missed by VS2008 but caught by VS2017.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fish-Git committed Dec 6, 2018
1 parent 131ece6 commit 505fbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dasdutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -2374,7 +2374,7 @@ int create_compressed_fba( char* fname, U16 devtype, U32 sectsz,


DLL_EXPORT void set_verbose_util( bool v ) { verbose = v; }
DLL_EXPORT int is_verbose_util() { return verbose; }
DLL_EXPORT bool is_verbose_util() { return verbose; }
DLL_EXPORT int next_util_devnum() { return nextnum++; }

DLL_EXPORT int valid_dsname( const char *pszdsname )
Expand Down

0 comments on commit 505fbb6

Please sign in to comment.