From fc988b3bbe75b32d20aff1700dd2d1cc25e4fb17 Mon Sep 17 00:00:00 2001 From: Ibrahim Islam Date: Tue, 20 Oct 2020 06:53:24 +0700 Subject: [PATCH] fixes typo --- FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs b/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs index 67c59bf..2b4feed 100644 --- a/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs +++ b/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs @@ -8,7 +8,7 @@ static class PipeHelpers { static readonly string PipePrefix = Path.Combine(Path.GetTempPath(), "CoreFxPipe_"); - public static string GetUnqiuePipeName() => $"FFMpegCore_{Guid.NewGuid("N").Substring(0, 5)}"; + public static string GetUnqiuePipeName() => $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(0, 5)}"; public static string GetPipePath(string pipeName) {