]> granicus.if.org Git - strace/blob - chdir.c
Change last parameter of umoven() from char* to void*
[strace] / chdir.c
1 #include "defs.h"
2
3 int
4 sys_chdir(struct tcb *tcp)
5 {
6         if (entering(tcp)) {
7                 printpath(tcp, tcp->u_arg[0]);
8         }
9         return 0;
10 }