Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Comment out code that isn't doing anything yet, to avoid warnings.
  • Loading branch information
colomon committed Feb 26, 2012
1 parent a69231e commit 7ccd4bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Builtins.cs
Expand Up @@ -1729,10 +1729,10 @@ public partial class Builtins {
object[] arguments = new object[]{ null, UnboxLoS(argv), UnboxLoS(env), Enum.ToObject(SpawnFlags, 0), null,
null, null, null };
bool result = (bool) spawn_sync.Invoke(null, arguments);
string stdout = (string) arguments[5];
/* string stdout = (string) arguments[5];
string stderr = (string) arguments[6];
int exit_status = (int) arguments[7];
return result ? 1 : 0;
*/ return result ? 1 : 0;
}

public static int path_chmod(string path, double mode) {
Expand Down

0 comments on commit 7ccd4bc

Please sign in to comment.