Merge pull request #203 from naru-jpn/fix_typo_orginal

Fix typo: orginal > original
This commit is contained in:
Alec Grieser 2018-04-20 09:21:26 -07:00 committed by GitHub
commit 33697da12a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -218,7 +218,7 @@ void CServiceBase::Stop()
// Log the error.
WriteErrorLogEntry("Service Stop", dwError);
// Set the orginal service status.
// Set the original service status.
SetServiceStatus(dwOriginalState);
}
catch (...)
@ -226,7 +226,7 @@ void CServiceBase::Stop()
// Log the error.
WriteEventLogEntry("Service failed to stop.", EVENTLOG_ERROR_TYPE);
// Set the orginal service status.
// Set the original service status.
SetServiceStatus(dwOriginalState);
}
}