Skip to content

Commit f5c6af1

Browse files
author
tina227
committed
コーディングルールに会わせるための変更
1 parent 362b9a5 commit f5c6af1

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

cobc/codegen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4360,7 +4360,7 @@ output_internal_function (struct cb_program *prog, cb_tree parameter_list)
43604360
prog->program_id);
43614361
}
43624362
}
4363-
output_line ("cob_set_programid(&module, \"%s\");", prog->program_id);
4363+
output_line ("cob_set_programid (&module, \"%s\");", prog->program_id);
43644364
if (prog->decimal_index_max) {
43654365
output_line ("/* Initialize decimal numbers */");
43664366
for (i = 0; i < prog->decimal_index_max; i++) {

libcob/common.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2661,7 +2661,7 @@ cob_acuw_justify (unsigned char *data, ...)
26612661
void
26622662
cob_set_programid (struct cob_module *module, const char *program_name)
26632663
{
2664-
int length;
2664+
int length;
26652665
length = strlen (program_name);
26662666
if (module->program_id != NULL) {
26672667
free (module->program_id);
@@ -2673,9 +2673,9 @@ cob_set_programid (struct cob_module *module, const char *program_name)
26732673
int
26742674
cob_acuw_calledby (unsigned char *data)
26752675
{
2676-
int length;
2677-
cob_field *f1;
2678-
char *called_program_name;
2676+
int length;
2677+
cob_field *f1;
2678+
char *called_program_name;
26792679

26802680
COB_CHK_PARMS (C$CALLEDBY, 1);
26812681

@@ -2700,7 +2700,6 @@ cob_acuw_calledby (unsigned char *data)
27002700
}
27012701

27022702
char *
2703-
27042703
cb_get_jisword_buff (const char *name, char *jbuf, size_t n)
27052704
{
27062705
size_t siz;

0 commit comments

Comments
 (0)