Skip to content

Commit cea5c42

Browse files
author
tina227
committed
コーディングルールに合わせるための変更
1 parent 1f45559 commit cea5c42

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

libcob/call.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
static char * lt_dlerror (void);
5959
void init_call_stack_list (void);
6060
struct call_stack_list
61-
cob_create_call_stack_list (const char *);
61+
cob_create_call_stack_list (const char *);
6262
void cob_cancel_call_stack_list (struct call_stack_list *);
6363

6464
static HMODULE
@@ -698,7 +698,7 @@ coblongjmp (struct cobjmp_buf *jbuf)
698698
}
699699

700700
void
701-
init_call_stack_list()
701+
init_call_stack_list ()
702702
{
703703
if (!call_stack_list_head) {
704704
call_stack_list_head = cob_malloc (sizeof (struct call_stack_list));
@@ -713,7 +713,7 @@ cob_create_call_stack_list (char *name)
713713
struct call_stack_list *new_list = cob_malloc (sizeof (struct call_stack_list));
714714
memset (new_list, 0, sizeof (struct call_stack_list));
715715
new_list->parent = current_call_stack_list;
716-
new_list->name = cob_malloc (strlen(name) + 1);
716+
new_list->name = cob_malloc (strlen (name) + 1);
717717
strcpy (new_list->name, name);
718718
current_call_stack_list = new_list;
719719
return new_list;
@@ -782,7 +782,7 @@ cob_cancel_call_stack_list (struct call_stack_list *p)
782782
}
783783

784784
void
785-
cob_cancel_all()
785+
cob_cancel_all ()
786786
{
787787
if (!current_call_stack_list) {
788788
cob_runtime_error ("Call to 'cob_cancel_all' current stack is NULL");

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+
const char *name;
4040
};
4141

4242
DECLNORET COB_EXPIMP void cob_call_error (void) COB_A_NORETURN;

0 commit comments

Comments
 (0)