Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: compat/win/sys/types.h

Issue 1120383003: Get generate_dump compiling on Windows (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@tools
Patch Set: fix mac; no implicit conversion to std::string for StringPiece Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | minidump/minidump_system_info_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compat/win/sys/types.h
diff --git a/compat/win/sys/types.h b/compat/win/sys/types.h
index 6cd8ab3d56427633313bd4f4711ab8101fa28710..b6463a0c9b1e13e6b665517f9211f0a28ae40712 100644
--- a/compat/win/sys/types.h
+++ b/compat/win/sys/types.h
@@ -22,11 +22,10 @@
#ifdef _WIN64
typedef int64_t ssize_t;
-typedef uint64_t pid_t;
#else
typedef __w64 int ssize_t;
-typedef __w64 unsigned int pid_t;
#endif
+typedef unsigned int pid_t;
#endif // CRASHPAD_COMPAT_WIN_SYS_TYPES_H_
« no previous file with comments | « DEPS ('k') | minidump/minidump_system_info_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698