aboutsummaryrefslogtreecommitdiffstats
path: root/common/command.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2018-11-22 12:35:07 +0000
committerDavid Shah <dave@ds0.me>2018-11-22 12:35:07 +0000
commite48c9e73e7bd30ef49fe3386330337b8a8c02054 (patch)
tree98e0eaa7f406867d539e441b07dcd555b1486e4b /common/command.cc
parent17315901605ed46a5c3b5c743453e054c50013ce (diff)
downloadnextpnr-e48c9e73e7bd30ef49fe3386330337b8a8c02054.tar.gz
nextpnr-e48c9e73e7bd30ef49fe3386330337b8a8c02054.tar.bz2
nextpnr-e48c9e73e7bd30ef49fe3386330337b8a8c02054.zip
python: Add wrapper for vectors to allow Python access to net.users
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'common/command.cc')
-rw-r--r--common/command.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/command.cc b/common/command.cc
index 5070bf9c..d20bb2a2 100644
--- a/common/command.cc
+++ b/common/command.cc
@@ -144,7 +144,7 @@ void CommandHandler::setupContext(Context *ctx)
int r;
do {
r = rand();
- } while(r == 0);
+ } while (r == 0);
ctx->rngseed(r);
}