Skip to content

Commit 0159da8

Browse files
committed
コーディングスタイルを修正しました
1 parent 819c427 commit 0159da8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

libcob/fileio.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4133,15 +4133,15 @@ cob_invoke_fun (int operate, char *f, cob_field *key, char *rec,
41334133
} else if (ret == '0') {
41344134
iRet = 0;
41354135
}
4136-
cob_exception_code = atoi(p_excpcode);
4136+
cob_exception_code = atoi (p_excpcode);
41374137
//ascii [0]->0x30 [9]->0x39
4138-
if(fnstatus != NULL){
4138+
if (fnstatus != NULL) {
41394139
status1 = fnstatus->data[0] - 0x30;
4140-
}else{
4140+
} else {
41414141
status1 = p_tmpfnstatus[0] - 0x30;
41424142
}
4143-
if ((status1 > 0 && status1 <= 9) && cob_exception_code == 0){
4144-
cob_set_exception(status_exception[status1]);
4143+
if ((status1 > 0 && status1 <= 9) && cob_exception_code == 0) {
4144+
cob_set_exception (status_exception[status1]);
41454145
}
41464146
}
41474147
}

0 commit comments

Comments
 (0)