Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Johnny Cai
wine
Commits
ea3342de
Commit
ea3342de
authored
21 years ago
by
Yorick Hardy
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
errno should not be used as a variable name.
parent
074d293c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scheduler/sysdeps.c
+4
-4
4 additions, 4 deletions
scheduler/sysdeps.c
with
4 additions
and
4 deletions
scheduler/sysdeps.c
+
4
−
4
View file @
ea3342de
...
...
@@ -362,15 +362,15 @@ int SYSDEPS_GetUnixTid(void)
/* default errno before threading is initialized */
static
int
*
default_errno_location
(
void
)
{
static
int
errno
;
return
&
errno
;
static
int
static_
errno
;
return
&
static_
errno
;
}
/* default h_errno before threading is initialized */
static
int
*
default_h_errno_location
(
void
)
{
static
int
h_errno
;
return
&
h_errno
;
static
int
static_
h_errno
;
return
&
static_
h_errno
;
}
/* errno once threading is working */
...
...
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