From 13c1925045c0f9db1fd366f43191303c8fb49cb2 Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 28 Feb 2014 17:18:51 -0800 Subject: [PATCH] Fix space issue --- vvp/vvp_net.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vvp/vvp_net.cc b/vvp/vvp_net.cc index c87e26ef9..a9df069a2 100644 --- a/vvp/vvp_net.cc +++ b/vvp/vvp_net.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004-2013 Stephen Williams (steve@icarus.com) + * Copyright (c) 2004-2014 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -2364,7 +2364,7 @@ vvp_vector2_t pow(const vvp_vector2_t&x, vvp_vector2_t&y) { /* If we have a zero exponent just return 1. */ if (y == vvp_vector2_t(0L, 1)) { - return vvp_vector2_t(1L, x.size()); + return vvp_vector2_t(1L, x.size()); } /* Is the value odd? */