Commit 7001a495 authored by Kirill Smelkov's avatar Kirill Smelkov

include: Fix typos

parent 49fd66ad
......@@ -30,7 +30,7 @@
* - need to "unload" non-dirty pages to free place for requested new data (reclaim)
*
* - need to be able to map a page into several places (to support
* overlapping-in-file mappings done not neccessarily adjacent-in-time to
* overlapping-in-file mappings done not necessarily adjacent-in-time to
* each other - there is no guarantee mapping them adjacent in address space
* is possible)
*
......
......@@ -2,7 +2,7 @@
#define _WENDELIN_BUG_H_
/* Wendelin. Utilities for handling assertions and bugs
* Copyright (C) 2014-2015 Nexedi SA and Contributors.
* Copyright (C) 2014-2019 Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
......@@ -46,7 +46,7 @@
__bug_errno(__FILE__, __LINE__, __func__); \
} while (0)
/* like assert(expr) but works indepenently of NDEBUG */
/* like assert(expr) but works independently of NDEBUG */
// TODO unlikely
#define ASSERT(expr) do { \
if (!(expr)) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment