Xref: news2.mv.net comp.os.msdos.djgpp:5296 From: avly AT castle DOT net (An) Newsgroups: comp.os.msdos.djgpp Subject: Re: _movedata question Date: Sun, 23 Jun 1996 07:48:34 GMT Organization: The Castle Network, http://www.castle.net Lines: 15 Message-ID: <4qit31$g8g@arther.castle.net> References: <31CB7CC9 DOT D67 AT cc DOT umanitoba DOT ca> NNTP-Posting-Host: bridge60.castle.net To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Steven Shaw wrote: >Someone tell me if there is something wrong with this statement; > _movedatab((unsigned) _my_ds, (unsigned) pImagePtr, _dos_ds, 0xA0000, 5); _movedatab(_my_ds(),......); ^^^^^^^ ^ It's a function call (gets inlined), otherwise you were using the function's address. -An