mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-08-04 17:51:55 +00:00
Fix typo.
Review URL: https://breakpad.appspot.com/506002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1093 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
bdd7220794
commit
3d451f31d8
|
@ -129,7 +129,7 @@ NSString* GetPlatform() {
|
||||||
#pragma mark -
|
#pragma mark -
|
||||||
|
|
||||||
- (void)start:(BOOL)onCurrentThread {
|
- (void)start:(BOOL)onCurrentThread {
|
||||||
if (started)
|
if (started_)
|
||||||
return;
|
return;
|
||||||
started_ = YES;
|
started_ = YES;
|
||||||
void(^startBlock)() = ^{
|
void(^startBlock)() = ^{
|
||||||
|
@ -146,7 +146,7 @@ NSString* GetPlatform() {
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)stop {
|
- (void)stop {
|
||||||
if (!started)
|
if (!started_)
|
||||||
return;
|
return;
|
||||||
started_ = NO;
|
started_ = NO;
|
||||||
dispatch_sync(queue_, ^{
|
dispatch_sync(queue_, ^{
|
||||||
|
|
Loading…
Reference in a new issue