Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e15d0bb8
Commit
e15d0bb8
authored
Jul 01, 2004
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused variable and added a typecast.
parent
13629df5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/interfaces/ecpg/ecpglib/descriptor.c
src/interfaces/ecpg/ecpglib/descriptor.c
+3
-3
No files found.
src/interfaces/ecpg/ecpglib/descriptor.c
View file @
e15d0bb8
/* dynamic SQL support routines
/* dynamic SQL support routines
*
*
* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/descriptor.c,v 1.
8 2004/06/30 15:01:56
meskes Exp $
* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/descriptor.c,v 1.
9 2004/07/01 18:32:58
meskes Exp $
*/
*/
#define POSTGRES_ECPG_INTERNAL
#define POSTGRES_ECPG_INTERNAL
...
@@ -435,7 +435,7 @@ ECPGset_desc(int lineno, char *desc_name, int index,...)
...
@@ -435,7 +435,7 @@ ECPGset_desc(int lineno, char *desc_name, int index,...)
{
{
va_list
args
;
va_list
args
;
struct
descriptor
*
desc
;
struct
descriptor
*
desc
;
struct
descriptor_item
*
desc_item
,
*
last_di
;
struct
descriptor_item
*
desc_item
;
for
(
desc
=
all_descriptors
;
desc
;
desc
=
desc
->
next
)
for
(
desc
=
all_descriptors
;
desc
;
desc
=
desc
->
next
)
{
{
...
@@ -457,7 +457,7 @@ ECPGset_desc(int lineno, char *desc_name, int index,...)
...
@@ -457,7 +457,7 @@ ECPGset_desc(int lineno, char *desc_name, int index,...)
if
(
desc_item
==
NULL
)
if
(
desc_item
==
NULL
)
{
{
desc_item
=
ECPGalloc
(
sizeof
(
*
desc_item
),
lineno
);
desc_item
=
(
struct
descriptor_item
*
)
ECPGalloc
(
sizeof
(
*
desc_item
),
lineno
);
desc_item
->
num
=
index
;
desc_item
->
num
=
index
;
desc_item
->
next
=
desc
->
items
;
desc_item
->
next
=
desc
->
items
;
desc
->
items
=
desc_item
;
desc
->
items
=
desc_item
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment