[go: nahoru, domu]

blob: 383837e07057e4fb56aa90c6830c6ac5dff128f0 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/device/utils/mac_utils.h"
#include "base/strings/stringprintf.h"
namespace device {
std::string HexErrorCode(IOReturn error_code) {
return base::StringPrintf("0x%04x", error_code);
}
} // namespace device