diff --git a/indra/llcommon/llprocessor.cpp b/indra/llcommon/llprocessor.cpp
index c7e1bf509c536a57ff3c48da0a1df414da688cd8..22ce47d96b2607778c70e6fcc4f8497e580a8370 100644
--- a/indra/llcommon/llprocessor.cpp
+++ b/indra/llcommon/llprocessor.cpp
@@ -283,11 +283,12 @@ class LLProcessorInfoImpl
 		out << "//////////////////////////" << std::endl;
 		out << "Processor Name:   " << getCPUBrandName() << std::endl;
 		out << "Frequency:        " << getCPUFrequency() << " MHz" << std::endl;
-		out << "Vendor:			  " << getInfo(eVendor, "Unset vendor").asString() << std::endl;
+		out << "Vendor:           " << getInfo(eVendor, "Unset vendor").asString() << std::endl;
 		out << "Family:           " << getCPUFamilyName() << " (" << getInfo(eFamily, 0) << ")" << std::endl;
 		out << "Extended family:  " << getInfo(eExtendedFamily, 0) << std::endl;
 		out << "Model:            " << getInfo(eModel, 0) << std::endl;
 		out << "Extended model:   " << getInfo(eExtendedModel, 0) << std::endl;
+        out << "Stepping:         " << getInfo(eStepping, 0) << std::endl;
 		out << "Type:             " << getInfo(eType, 0) << std::endl;
 		out << "Brand ID:         " << getInfo(eBrandID, 0) << std::endl;
 		out << std::endl;