Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
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
Esteban Blanc
proview
Commits
e27cefe2
Commit
e27cefe2
authored
Nov 20, 2019
by
Claes Sjöfors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile fixes
parent
a3d8afb0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
remote/exe/rs_remote_rabbitmq/src/rs_remote_rabbitmq.c
remote/exe/rs_remote_rabbitmq/src/rs_remote_rabbitmq.c
+1
-1
wb/lib/wb/src/wb_lfu.cpp
wb/lib/wb/src/wb_lfu.cpp
+1
-0
xtt/lib/ge/src/ge_graph_command.cpp
xtt/lib/ge/src/ge_graph_command.cpp
+2
-2
No files found.
remote/exe/rs_remote_rabbitmq/src/rs_remote_rabbitmq.c
View file @
e27cefe2
...
...
@@ -469,7 +469,7 @@ int main(int argc, char* argv[])
{
remtrans_item
*
remtrans
;
unsigned
char
id
[
32
];
unsigned
char
pname
[
32
];
unsigned
char
pname
[
80
];
pwr_tStatus
sts
;
int
i
;
float
time_since_scan
=
0
.
0
;
...
...
wb/lib/wb/src/wb_lfu.cpp
View file @
e27cefe2
...
...
@@ -1829,6 +1829,7 @@ pwr_tStatus lfu_SaveDirectoryVolume(
found
=
1
;
break
;
}
sts
=
ldh_GetNextSibling
(
ldhses
,
volobjid
,
&
volobjid
);
}
if
(
!
found
)
{
char
msg
[
200
];
...
...
xtt/lib/ge/src/ge_graph_command.cpp
View file @
e27cefe2
...
...
@@ -3639,7 +3639,7 @@ static int graph_getobjecttext_func(void* filectx, ccm_sArg* arg_list,
Graph
*
graph
;
int
type
;
grow_tObject
o
;
char
text
[
200
];
char
text
[
K_STRING_SIZE
];
if
(
arg_count
!=
1
)
return
CCM__ARGMISM
;
...
...
@@ -3653,7 +3653,7 @@ static int graph_getobjecttext_func(void* filectx, ccm_sArg* arg_list,
type
=
grow_GetObjectType
(
o
);
if
(
type
==
glow_eObjectType_GrowText
)
{
grow_GetObjectText
(
o
,
text
,
sizeof
(
text
));
strncpy
(
return_string
,
text
,
sizeof
(
text
));
strncpy
(
return_string
,
text
,
sizeof
(
K_STRING_SIZE
));
}
else
strcpy
(
return_string
,
""
);
...
...
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