diff options
author | Paul B. Henson <henson@acm.org> | 2013-08-04 21:07:20 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-08-04 21:07:20 +0200 |
commit | 985345d0029a55c47068df4f28a3108df301cca8 (patch) | |
tree | cf83b7c80e38de6bc36b52b9267431d844e03a98 | |
parent | da331d779c19d7d5d4ef05152ee467d617913a01 (diff) |
ubi_tools: fix typo in strcpy
Signed-off-by: Paul B. Henson <henson@acm.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | miscutils/ubi_tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/ubi_tools.c b/miscutils/ubi_tools.c index d923f1c5a..b71393532 100644 --- a/miscutils/ubi_tools.c +++ b/miscutils/ubi_tools.c @@ -122,7 +122,7 @@ int ubi_tools_main(int argc UNUSED_PARAM, char **argv) + 2 * sizeof(int)*3 + /*just in case:*/ 16]; #define path_sys_class_ubi_ubi (path + sizeof("/sys/class/ubi/ubi")-1) - strcpy(path_sys_class_ubi_ubi, "/sys/class/ubi/ubi"); + strcpy(path, "/sys/class/ubi/ubi"); memset(&req_structs, 0, sizeof(req_structs)); if (do_mkvol) { |