diff options
author | Mike Frysinger <vapier@chromium.org> | 2015-09-11 12:59:53 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@chromium.org> | 2015-09-11 12:59:53 -0400 |
commit | 1dcec01445ca6bb076390c725dceb5fd049d63d7 (patch) | |
tree | 68955abdb1d52f0f3c2c0165b04ca8b634d76d6f | |
parent | README: update dev documents w/new git flow (diff) | |
download | breakpad-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 .
-rw-r--r-- | src/common/solaris/guid_creator.cc | 2 |
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) { |