Преглед изворни кода

system: BConnection: fix typo which broke pipe BConnection's

ambrop7 пре 14 година
родитељ
комит
2c66094f18
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      system/BConnection.h

+ 1 - 1
system/BConnection.h

@@ -213,7 +213,7 @@ static struct BConnection_source BConnection_source_pipe (int pipefd)
 {
     struct BConnection_source s;
     s.type = BCONNECTION_SOURCE_TYPE_PIPE;
-    s.u.pipe.pipefd;
+    s.u.pipe.pipefd = pipefd;
     return s;
 }
 #endif