Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
Container Registry
Model registry
Operate
Environments
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
pikelang
pike
Commits
ef5fb403
Commit
ef5fb403
authored
26 years ago
by
Fredrik Hübinette (Hubbe)
Browse files
Options
Downloads
Patches
Plain Diff
better error messages
Rev: src/modules/sprintf/sprintf.c:1.18
parent
4b383740
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/sprintf/sprintf.c
+5
-4
5 additions, 4 deletions
src/modules/sprintf/sprintf.c
with
5 additions
and
4 deletions
src/modules/sprintf/sprintf.c
+
5
−
4
View file @
ef5fb403
...
...
@@ -96,7 +96,7 @@
*/
#include
"global.h"
RCSID
(
"$Id: sprintf.c,v 1.1
7
1998/04/2
3 23:44
:0
9
hubbe Exp $"
);
RCSID
(
"$Id: sprintf.c,v 1.1
8
1998/04/2
8 07:50
:0
3
hubbe Exp $"
);
#include
"error.h"
#include
"array.h"
#include
"svalue.h"
...
...
@@ -414,12 +414,12 @@ INLINE static int do_one(struct format_info *f)
VAR=arg; \
arg=0; \
}else{ \
if(
!(
num_arg
--)
) \
if(
argument >=
num_arg) \
{ \
sprintf_error("Too few arguments to sprintf.\n"); \
break;
/* make gcc happy */
\
} \
VAR=lastarg=argp+
+
; \
VAR=lastarg=argp+
(argument++)
; \
}
#define GET(VAR,PIKE_TYPE,TYPE_NAME,EXTENSION) \
...
...
@@ -428,7 +428,7 @@ INLINE static int do_one(struct format_info *f)
GET_SVALUE(tmp_); \
if(tmp_->type!=PIKE_TYPE) \
{ \
sprintf_error("
E
xpected %s, got %s.\n",TYPE_NAME, \
sprintf_error("
Wrong type for argument %d: e
xpected %s, got %s.\n",
argument+1,
TYPE_NAME, \
get_name_of_type(tmp_->type)); \
break;
/* make gcc happy */
\
} \
...
...
@@ -480,6 +480,7 @@ static string low_pike_sprintf(char *format,
string
prefix
,
int
nosnurkel
)
{
int
argument
=
0
;
int
tmp
,
setwhat
,
pos
,
d
,
e
;
char
*
a
,
*
begin
;
char
buffer
[
40
];
...
...
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