Skip to content

Commit aec68fd

Browse files
authored
struct options-> mute should be explicitly signed, (#80)
so that we accommodate environments where char is unsigned by default. (Issue was introduced by #73)
1 parent 4f533a7 commit aec68fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ struct options {
6262
const char *out_file; /* output file name */
6363
char *ins_path; /* instrument path */
6464
char *driver_parm[MAX_DRV_PARM]; /* driver parameters */
65-
char mute[XMP_MAX_CHANNELS];
65+
signed char mute[XMP_MAX_CHANNELS];
6666
};
6767

6868
struct control {

0 commit comments

Comments
 (0)