diff options
author | midipix <writeonce@midipix.org> | 2015-11-22 17:56:10 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-10 23:35:26 -0500 |
commit | e02651b57880bb32ea693abf434751a216df9464 (patch) | |
tree | e812717b4126edc8407d71a86ce8217e24bdfc15 /src/logic/pe_map_raw_image.c | |
parent | fa22b4823aab053f0500b117527fa910db70277a (diff) | |
download | perk-e02651b57880bb32ea693abf434751a216df9464.tar.bz2 perk-e02651b57880bb32ea693abf434751a216df9464.tar.xz |
driver integration 7/9: semantic change: 'name'--> 'path' where applicable.
Diffstat (limited to 'src/logic/pe_map_raw_image.c')
-rw-r--r-- | src/logic/pe_map_raw_image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logic/pe_map_raw_image.c b/src/logic/pe_map_raw_image.c index 5792f78..c248ce9 100644 --- a/src/logic/pe_map_raw_image.c +++ b/src/logic/pe_map_raw_image.c @@ -8,13 +8,13 @@ #include <perk/perk.h> -int pe_map_raw_image (int fd, const char * fname, int prot, struct pe_raw_image * map) +int pe_map_raw_image (int fd, const char * path, int prot, struct pe_raw_image * map) { struct stat stat; bool fnew; if (fnew = (fd < 0)) - fd = open(fname,O_RDONLY | O_CLOEXEC); + fd = open(path,O_RDONLY | O_CLOEXEC); if ((fd < 0) || (fstat(fd,&stat) < 0)) return -1; |