Skip to content

Commit 7bb537c

Browse files
committed
リストの関数名を設定する項目がconst定義のままstrcpyを利用していたため、constを除外
1 parent 7cebada commit 7bb537c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libcob/call.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ struct call_stack_list {
3636
struct call_stack_list *parent;
3737
struct call_stack_list *children;
3838
struct call_stack_list *sister;
39-
const char *name;
39+
char *name;
4040
};
4141

4242
DECLNORET COB_EXPIMP void cob_call_error (void) COB_A_NORETURN;

0 commit comments

Comments
 (0)