소스 검색

Add missing whitespace in new Debug::Acquire::gpgv output

Matt Zimmerman 21 년 전
부모
커밋
af45f087e2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      methods/gpgv.cc

+ 1 - 1
methods/gpgv.cc

@@ -101,7 +101,7 @@ const char *GPGVMethod::VerifyGetSigners(const char *file, const char *outfile,
       {
          std::cerr << "Preparing to exec: " << gpgvpath;
 	 for(unsigned int j=0;Args[j] != NULL; j++)
-	    std::cerr << Args[j] << " ";
+	    std::cerr << " " << Args[j];
 	 std::cerr << std::endl;
       }
       int nullfd = open("/dev/null", O_RDONLY);