aboutsummaryrefslogtreecommitdiffstats
path: root/std/owned.sol
diff options
context:
space:
mode:
Diffstat (limited to 'std/owned.sol')
-rw-r--r--std/owned.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/owned.sol b/std/owned.sol
index 37f0ecb9..3d7674f5 100644
--- a/std/owned.sol
+++ b/std/owned.sol
@@ -3,7 +3,7 @@ contract owned {
modifier onlyowner() {
if (msg.sender == owner) {
- _
+ _;
}
}