From 68cbefe99b23e92e05ce0d0a9cedea1dc3c73ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 7 Jun 2008 12:46:29 +0000 Subject: [PATCH] Fixed typo in printf output. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25844 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/apps/partitioner/Partitioner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/apps/partitioner/Partitioner.cpp b/src/tests/apps/partitioner/Partitioner.cpp index 91147156a0..adb93fcef1 100644 --- a/src/tests/apps/partitioner/Partitioner.cpp +++ b/src/tests/apps/partitioner/Partitioner.cpp @@ -627,7 +627,7 @@ private: error = partition->CreateChild(start, size, type, NULL, parameters.String()); if (error != B_OK) - printf("Creating the partiiton failed: %s\n", strerror(error)); + printf("Creating the partition failed: %s\n", strerror(error)); } void _WriteChanges()