svn commit: r328723 - stable/11/sbin/nvmecontrol
Alexander Motin
mav at FreeBSD.org
Thu Feb 1 19:43:19 UTC 2018
Author: mav
Date: Thu Feb 1 19:43:18 2018
New Revision: 328723
URL: https://svnweb.freebsd.org/changeset/base/328723
Log:
MFC r314228 (by imp): Fix typos in output.
Modified:
stable/11/sbin/nvmecontrol/logpage.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sbin/nvmecontrol/logpage.c
==============================================================================
--- stable/11/sbin/nvmecontrol/logpage.c Thu Feb 1 19:41:46 2018 (r328722)
+++ stable/11/sbin/nvmecontrol/logpage.c Thu Feb 1 19:43:18 2018 (r328723)
@@ -714,13 +714,13 @@ print_hgst_info_temp_history(void *buf, uint16_t subty
printf(" %-30s: %d C\n", "Minimum Temperature", *walker++);
min = le32dec(walker);
walker += 4;
- printf(" %-30s: %d:%02d:00\n", "Max Temperture Time", min / 60, min % 60);
+ printf(" %-30s: %d:%02d:00\n", "Max Temperature Time", min / 60, min % 60);
min = le32dec(walker);
walker += 4;
- printf(" %-30s: %d:%02d:00\n", "Over Temperture Duration", min / 60, min % 60);
+ printf(" %-30s: %d:%02d:00\n", "Over Temperature Duration", min / 60, min % 60);
min = le32dec(walker);
walker += 4;
- printf(" %-30s: %d:%02d:00\n", "Min Temperture Time", min / 60, min % 60);
+ printf(" %-30s: %d:%02d:00\n", "Min Temperature Time", min / 60, min % 60);
}
static void
More information about the svn-src-all
mailing list