Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/resctrl: fix spelling mistake "Errror" -> "Error"

There are two spelling mistakes in error messages. Fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Colin Ian King and committed by
Shuah Khan
14f4283a 3032e3a7

+2 -2
+2 -2
tools/testing/selftests/resctrl/fill_buf.c
··· 181 181 ret = fill_cache_write(start_ptr, end_ptr, resctrl_val); 182 182 183 183 if (ret) { 184 - printf("\n Errror in fill cache read/write...\n"); 184 + printf("\n Error in fill cache read/write...\n"); 185 185 return -1; 186 186 } 187 187 ··· 205 205 ret = fill_cache(cache_size, malloc_and_init_memory, memflush, op, 206 206 resctrl_val); 207 207 if (ret) { 208 - printf("\n Errror in fill cache\n"); 208 + printf("\n Error in fill cache\n"); 209 209 return -1; 210 210 } 211 211