fix typo in firmware_helper

The wrong string is being nullifed.
This commit is contained in:
Amir Shalem 2005-08-25 00:39:45 +02:00 committed by Kay Sievers
parent 9ae611be33
commit 440103fcfc

View file

@ -109,7 +109,7 @@ int main(int argc, char **argv) {
}
snprintf(data_path, sizeof(data_path), "/sys/%s/data", devpath);
fw_path[sizeof(data_path)-1] = '\0';
data_path[sizeof(data_path)-1] = '\0';
fw_fd = open(data_path, O_RDWR);
if (fw_fd < 0) {
rc = errno;