From 88bcab37099877267ff65013721ff1ce2b058bdf Mon Sep 17 00:00:00 2001 From: Scott Berrevoets Date: Wed, 20 Mar 2024 18:55:55 -0700 Subject: [PATCH] All your codebase are belong to us. --- Sources/NTPClient.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/NTPClient.swift b/Sources/NTPClient.swift index ea13bcd..a6fb2e0 100644 --- a/Sources/NTPClient.swift +++ b/Sources/NTPClient.swift @@ -90,8 +90,8 @@ final class NTPClient { } timer?.invalidate() - print(data) - print(try? NTPPacket(data: data, destinationTime: destinationTime)) + print(String(describing: data)) + print(String(describing: try? NTPPacket(data: data!, destinationTime: destinationTime))) guard let data = data, let PDU = try? NTPPacket(data: data, destinationTime: destinationTime), PDU.isValidResponse() else