Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
iproute2
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
iproute2
Commits
de5c62a9
Commit
de5c62a9
authored
Jan 17, 2005
by
net[shemminger]!shemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Import patch iproute2.121
(Logical change 1.123)
parent
588bc7b7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
tc/normal.c
tc/normal.c
+1
-1
tc/paretonormal.c
tc/paretonormal.c
+1
-1
No files found.
tc/normal.c
View file @
de5c62a9
...
...
@@ -26,7 +26,7 @@ main(int argc, char **argv)
double
x
,
*
table
;
int
i
,
n
;
table
=
calloc
(
sizeof
(
double
),
TABLESIZE
);
table
=
calloc
(
sizeof
(
double
),
TABLESIZE
+
1
);
if
(
!
table
)
{
fprintf
(
stderr
,
"Not enough memory
\n
"
);
return
1
;
...
...
tc/paretonormal.c
View file @
de5c62a9
...
...
@@ -54,7 +54,7 @@ main(int argc, char **argv)
double
*
table
;
int
i
,
n
;
table
=
calloc
(
TABLESIZE
,
sizeof
(
double
));
table
=
calloc
(
TABLESIZE
+
1
,
sizeof
(
double
));
if
(
!
table
)
{
fprintf
(
stderr
,
"Out of memory!
\n
"
);
exit
(
1
);
...
...
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