diff options
author | Roland McGrath <roland@gnu.org> | 2001-12-31 07:54:26 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-12-31 07:54:26 +0000 |
commit | b26d7a86b1238261a2804203e19c19420db0059b (patch) | |
tree | 59a7b03276106e5423868da6ef86806ca2b88fc6 /utils/storeread.c | |
parent | 461f4887da9756cb6d7a6cf7fe0a1a0f5bb139d3 (diff) |
2001-12-30 Roland McGrath <roland@frob.com>
* storeread.c (main): Fix argument order in `error' call.
Diffstat (limited to 'utils/storeread.c')
-rw-r--r-- | utils/storeread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/storeread.c b/utils/storeread.c index 52da3fc2..5700971e 100644 --- a/utils/storeread.c +++ b/utils/storeread.c @@ -1,7 +1,7 @@ /* Write portions of a store to stdout - Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc. - Written by Miles Bader <miles@gnu.ai.mit.edu> + Copyright (C) 1996,97,99,2001 Free Software Foundation, Inc. + Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or @@ -91,7 +91,7 @@ main (int argc, char **argv) else err = store_create (source, 0, 0, &store); if (err) - error (err, 3, "%s", arg); + error (3, err, "%s", arg); } else if (addr < 0) addr = atoll (arg); |