From a5fad0f20df18436ec23061af7d1e04cec4fb714 Mon Sep 17 00:00:00 2001 From: schodet Date: Sun, 27 Jun 2004 14:26:18 +0000 Subject: Fix: bug dans GpioConcat. --- 2004/i/nono/src/io/gpio_concat.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '2004') diff --git a/2004/i/nono/src/io/gpio_concat.cc b/2004/i/nono/src/io/gpio_concat.cc index 7a35b50..2e4070d 100644 --- a/2004/i/nono/src/io/gpio_concat.cc +++ b/2004/i/nono/src/io/gpio_concat.cc @@ -120,6 +120,6 @@ int GpioConcat::getByName (const std::string &name) const { int n = io0_.getByName (name); - return n == -1 ? io1_.getByName (name) : n; + return n == -1 ? io1_.getByName (name) + nSep_ : n; } -- cgit v1.2.3