Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Tor Browser
Commits
e247c93c
Commit
e247c93c
authored
Mar 13, 2023
by
Richard Pospesel
Browse files
Options
Downloads
Patches
Plain Diff
fixup! Bug 41459: WebRTC fails to build under mingw (Part 3)
parent
0a233469
Loading
Loading
1 merge request
!581
Bug 41678: Correct the typedef for pid_t in WebRTC for Windows
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
third_party/sipcc/cpr_win_types.h
+2
-6
2 additions, 6 deletions
third_party/sipcc/cpr_win_types.h
with
2 additions
and
6 deletions
third_party/sipcc/cpr_win_types.h
+
2
−
6
View file @
e247c93c
...
...
@@ -50,14 +50,10 @@ typedef int64_t ssize_t;
#endif
/*
* Define pid_t
.
* Define pid_t
for MSVC builds
*/
#if defined(_WIN32)
#if defined(_MSC_VER) || !defined(_WIN64)
#if defined(_WIN32) && defined (_MSC_VER)
typedef
int
pid_t
;
#else
typedef
long
long
pid_t
;
#endif
#endif
/*
...
...
This diff is collapsed.
Click to expand it.
Pier Angelo Vendrame
@pierov
mentioned in issue
#41489
·
Mar 15, 2023
mentioned in issue
#41489
mentioned in issue #41489
Toggle commit list
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
sign in
to comment