mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-16 22:28:18 +00:00
Minor cleanup fixes
- Fix spelling errors - Remove extra semicolons - Remove extra spaces Fixes #1650
This commit is contained in:
committed by
Christian Helmuth
parent
d2564442d4
commit
c2ff0ae9d4
@ -56,7 +56,7 @@ namespace Genode {
|
||||
|
||||
Alloc_return alloc_addr(size_t, addr_t)
|
||||
{
|
||||
return Alloc_return::OK;;
|
||||
return Alloc_return::OK;
|
||||
}
|
||||
|
||||
int add_range(addr_t, size_t) override { return 0; }
|
||||
|
@ -259,7 +259,7 @@ inline int lx_sigaction(int signum, void (*handler)(int))
|
||||
*/
|
||||
enum { SA_RESTORER = 0x04000000 };
|
||||
act.flags = SA_RESTORER;
|
||||
act.restorer = lx_restore_rt;;
|
||||
act.restorer = lx_restore_rt;
|
||||
#else
|
||||
act.flags = 0;
|
||||
act.restorer = 0;
|
||||
|
Reference in New Issue
Block a user