From b8092f18e1fdba3497cf1479409b5ee0f585bfe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 25 Oct 2009 13:59:05 +0000 Subject: [PATCH] the column argument wasn't taken into account git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33759 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/open.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/bin/open.cpp b/src/bin/open.cpp index 86108e6adf..5479267dc1 100644 --- a/src/bin/open.cpp +++ b/src/bin/open.cpp @@ -107,10 +107,11 @@ main(int argc, char **argv) arg.Truncate(i); status = entry.SetTo(arg.String()); - if (status == B_OK && entry.Exists()) + if (status == B_OK && entry.Exists()) { status = open_file(openWith, entry, line); - if (status == B_OK) - continue; + if (status == B_OK) + continue; + } // get the column col = line;