aboutsummaryrefslogtreecommitdiff
path: root/src/common/solaris
diff options
context:
space:
mode:
authorMike Frysinger <vapier@chromium.org>2015-09-11 12:59:53 -0400
committerMike Frysinger <vapier@chromium.org>2015-09-11 12:59:53 -0400
commit1dcec01445ca6bb076390c725dceb5fd049d63d7 (patch)
tree68955abdb1d52f0f3c2c0165b04ca8b634d76d6f /src/common/solaris
parentREADME: update dev documents w/new git flow (diff)
downloadbreakpad-1dcec01445ca6bb076390c725dceb5fd049d63d7.tar.xz
solaris: fix spurious ;
As reported in the issue tracker, building on Solaris 8 fails: .../src/common/solaris/guid_creator.cc:69: error: extra `;' BUG=google-breakpad:251 R=ted.mielczarek@gmail.com Review URL: https://codereview.chromium.org/1333243002 .
Diffstat (limited to 'src/common/solaris')
-rw-r--r--src/common/solaris/guid_creator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/solaris/guid_creator.cc b/src/common/solaris/guid_creator.cc
index c4d58e0a..e9e6c6f5 100644
--- a/src/common/solaris/guid_creator.cc
+++ b/src/common/solaris/guid_creator.cc
@@ -66,7 +66,7 @@ const GUIDGenerator kGuidGenerator;
bool CreateGUID(GUID *guid) {
return kGuidGenerator.CreateGUID(guid);
-};
+}
// Parse guid to string.
bool GUIDToString(const GUID *guid, char *buf, int buf_len) {