projects
/
psqlodbc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e88e2a
)
'for' loop initial declarations are only allowed in C99 mode.
author
Hiroshi Inoue
<h-inoue@dream.email.ne.jp>
Fri, 17 Jun 2016 10:27:02 +0000
(19:27 +0900)
committer
Hiroshi Inoue
<h-inoue@dream.email.ne.jp>
Fri, 17 Jun 2016 10:27:02 +0000
(19:27 +0900)
descriptor.c
patch
|
blob
|
blame
|
history
diff --git
a/descriptor.c
b/descriptor.c
index 19b0492dee98d3118aadfd545a46932d37c2f8b8..723b2fcc029b453aec92e9d297340961a3ee7d37 100644
(file)
--- a/
descriptor.c
+++ b/
descriptor.c
@@
-114,10
+114,11
@@
void TI_Create_IH(TABLE_INFO *ti)
void TI_Destroy_IH(TABLE_INFO *ti)
{
InheritanceClass *ih;
+ int i;
if (NULL == (ih = ti->ih))
return;
- for (i
nt i
= 0; i < ih->count; i++)
+ for (i = 0; i < ih->count; i++)
{
NULL_THE_NAME(ih->inf[i].fullTable);
}