citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit ab3c99a4e8689850d26d6d13e44ece18a359927e
parent 66f9041b07dd478c0833ad6bf0ce34ac617149ae
Author: Kyle Milz <kyle@0x30.net>
Date:   Mon, 22 Aug 2016 22:23:29 -0600

src: update err text

Diffstat:
Msrc/shm.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/shm.cc b/src/shm.cc @@ -16,7 +16,7 @@ Shm::Shm(std::string const &path) : m_pos(0) { if ((m_fd = open(m_path.c_str(), O_RDONLY, S_IRUSR | S_IWUSR)) < 0) - err(1, "shm_open"); + err(1, "open"); struct stat sb; fstat(m_fd, &sb);