Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
2761a900
Commit
2761a900
authored
17 years ago
by
Sebastien Ponce
Committed by
Steven Murray
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed warnings
parent
9b43aaa7
No related branches found
Branches containing commit
Tags
v0.0-173
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mediachanger/castorrmc/common/Csnprintf.c
+3
-3
3 additions, 3 deletions
mediachanger/castorrmc/common/Csnprintf.c
mediachanger/castorrmc/h/Csnprintf.h
+3
-3
3 additions, 3 deletions
mediachanger/castorrmc/h/Csnprintf.h
with
6 additions
and
6 deletions
mediachanger/castorrmc/common/Csnprintf.c
+
3
−
3
View file @
2761a900
/*
* $Id: Csnprintf.c,v 1.
1
200
3
/1
1
/0
4
1
3:02:35 jdurand
Exp $
* $Id: Csnprintf.c,v 1.
2
200
7
/1
2
/0
7
1
1:40:52 sponcec3
Exp $
*/
#include
"Csnprintf.h"
...
...
@@ -7,7 +7,7 @@
/* Hide the snprintf and al. call v.s. different OS. */
/* Sometimes a different name, sometimes do not exist */
int
DLL_DECL
Csnprintf
(
char
*
str
,
size_t
size
,
char
*
format
,
...)
{
int
DLL_DECL
Csnprintf
(
char
*
str
,
size_t
size
,
const
char
*
format
,
...)
{
int
rc
;
va_list
args
;
...
...
@@ -20,7 +20,7 @@ int DLL_DECL Csnprintf(char *str, size_t size, char *format, ...) {
return
(
rc
);
}
int
DLL_DECL
Cvsnprintf
(
char
*
str
,
size_t
size
,
char
*
format
,
va_list
args
)
int
DLL_DECL
Cvsnprintf
(
char
*
str
,
size_t
size
,
const
char
*
format
,
va_list
args
)
{
#if (defined(__osf__) && defined(__alpha))
return
(
vsprintf
(
str
,
format
,
args
));
...
...
This diff is collapsed.
Click to expand it.
mediachanger/castorrmc/h/Csnprintf.h
+
3
−
3
View file @
2761a900
/*
* $Id: Csnprintf.h,v 1.
1
200
3
/1
1
/0
4
1
3:02:56 jdurand
Exp $
* $Id: Csnprintf.h,v 1.
2
200
7
/1
2
/0
7
1
1:40:53 sponcec3
Exp $
*/
#ifndef __Csnprintf_h
...
...
@@ -10,7 +10,7 @@
#include
<sys/types.h>
#include
"osdep.h"
EXTERN_C
int
DLL_DECL
Csnprintf
_PROTO
((
char
*
,
size_t
,
char
*
,
...));
EXTERN_C
int
DLL_DECL
Cvsnprintf
_PROTO
((
char
*
,
size_t
,
char
*
,
va_list
));
EXTERN_C
int
DLL_DECL
Csnprintf
_PROTO
((
char
*
,
size_t
,
const
char
*
,
...));
EXTERN_C
int
DLL_DECL
Cvsnprintf
_PROTO
((
char
*
,
size_t
,
const
char
*
,
va_list
));
#endif
/* __Csnprintf_h */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment