Comparison

util-src/pposix.c @ 7919:251bf68922d9

util.pposix: Fix typo in comment
author Kim Alvefur <zash@zash.se>
date Sun, 26 Feb 2017 20:31:08 +0100
parent 7889:b8d694646597
child 7926:b009c27818c6
comparison
equal deleted inserted replaced
7918:12e5a54907b6 7919:251bf68922d9
613 lua_pushboolean(L, 0); 613 lua_pushboolean(L, 0);
614 lua_pushstring(L, "getrlimit-failed."); 614 lua_pushstring(L, "getrlimit-failed.");
615 return 2; 615 return 2;
616 } 616 }
617 } else { 617 } else {
618 /* Unsupported resoucrce. Sorry I'm pretty limited by POSIX standard. */ 618 /* Unsupported resource. Sorry I'm pretty limited by POSIX standard. */
619 lua_pushboolean(L, 0); 619 lua_pushboolean(L, 0);
620 lua_pushstring(L, "invalid-resource"); 620 lua_pushstring(L, "invalid-resource");
621 return 2; 621 return 2;
622 } 622 }
623 623