1
0
Fork 0

Fix typos reported by lintian and change DosBox to DOSBox.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4161
This commit is contained in:
Peter Veenstra 2018-09-14 19:53:55 +00:00
parent 1ff6911b3c
commit 2f09b52de8
5 changed files with 13 additions and 13 deletions

View file

@ -517,7 +517,7 @@ static void cache_init(bool enable) {
#if (C_HAVE_MPROTECT)
if(mprotect(cache_code_link_blocks,CACHE_TOTAL+CACHE_MAXSIZE+PAGESIZE_TEMP,PROT_WRITE|PROT_READ|PROT_EXEC))
LOG_MSG("Setting excute permission on the code cache has failed!");
LOG_MSG("Setting execute permission on the code cache has failed!");
#endif
CacheBlock * block=cache_getblock();
cache.block.first=block;
@ -612,7 +612,7 @@ static void cache_reset(void) {
#if (C_HAVE_MPROTECT)
if(mprotect(cache_code_link_blocks,CACHE_TOTAL+CACHE_MAXSIZE+PAGESIZE_TEMP,PROT_WRITE|PROT_READ|PROT_EXEC))
LOG_MSG("Setting excute permission on the code cache has failed!");
LOG_MSG("Setting execute permission on the code cache has failed!");
#endif
}

View file

@ -603,7 +603,7 @@ static void cache_init(bool enable) {
#if (C_HAVE_MPROTECT)
if(mprotect(cache_code_link_blocks,CACHE_TOTAL+CACHE_MAXSIZE+PAGESIZE_TEMP,PROT_WRITE|PROT_READ|PROT_EXEC))
LOG_MSG("Setting excute permission on the code cache has failed");
LOG_MSG("Setting execute permission on the code cache has failed");
#endif
CacheBlockDynRec * block=cache_getblock();
cache.block.first=block;